Skip to content

Commit

Permalink
setting up turborepo
Browse files Browse the repository at this point in the history
  • Loading branch information
brenocastelo committed Dec 12, 2022
1 parent 61b14f9 commit 5b746f1
Show file tree
Hide file tree
Showing 8 changed files with 1,469 additions and 1,659 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
node_modules
node_modules
dist
.turbo
11 changes: 9 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,18 @@
"name": "ignite-design-system",
"version": "1.0.0",
"main": "index.js",
"private": "true",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "turbo run dev --parallel",
"build": "turbo run build"
},
"keywords": [],
"author": "",
"license": "ISC"
"license": "ISC",
"devDependencies": {
"turbo": "^1.6.3"
}
}
1 change: 1 addition & 0 deletions packages/docs/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
storybook-static
2 changes: 1 addition & 1 deletion packages/eslint-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "1.0.0",
"license": "ISC",
"main": "index.js",
"private": "true",
"private": true,
"devDependencies": {
"@rocketseat/eslint-config": "^1.1.3",
"eslint": "^8.29.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/tokens/src/colors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ export const colors = {
ignite500: '#00875F',
ignite700: '#015F43',
ignite900: '#00291D',
}
};
2 changes: 1 addition & 1 deletion packages/ts-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"name": "@ignite-ui/ts-config",
"version": "1.0.0",
"license": "ISC",
"private": "true"
"private": true
}
12 changes: 12 additions & 0 deletions turbo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"dev": {
"cache": false
},
"build": {
"outputs": ["dist/**", "storybook-static/**"],
"dependsOn": ["^build"]
}
}
}
3,094 changes: 1,441 additions & 1,653 deletions yarn.lock

Large diffs are not rendered by default.

0 comments on commit 5b746f1

Please sign in to comment.