Skip to content

Commit

Permalink
bump turbo to v2
Browse files Browse the repository at this point in the history
  • Loading branch information
tdreyno committed Jul 2, 2024
1 parent a7307f5 commit 859e70a
Show file tree
Hide file tree
Showing 6 changed files with 61 additions and 50 deletions.
63 changes: 28 additions & 35 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@
},
"devDependencies": {
"@repo/eslint-config": "*",
"@repo/react-example": "*",
"@repo/typescript-config": "*",
"@tdreyno/fizz": "*",
"@tdreyno/fizz-react": "*",
"@tdreyno/fizz-svelte": "*",
"@repo/react-example": "*",
"prettier": "^3.2.5",
"turbo": "^1.13.3"
"turbo": "^2.0.6"
},
"engines": {
"node": ">=18"
Expand Down
10 changes: 7 additions & 3 deletions packages/fizz-react/turbo.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
{
"$schema": "https://turbo.build/schema.json",
"extends": ["//"],
"pipeline": {
"extends": [
"//"
],
"tasks": {
"build": {
"outputs": ["dist/**"]
"outputs": [
"dist/**"
]
}
}
}
10 changes: 7 additions & 3 deletions packages/fizz-svelte/turbo.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
{
"$schema": "https://turbo.build/schema.json",
"extends": ["//"],
"pipeline": {
"extends": [
"//"
],
"tasks": {
"build": {
"outputs": ["dist/**"]
"outputs": [
"dist/**"
]
}
}
}
10 changes: 7 additions & 3 deletions packages/fizz/turbo.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
{
"$schema": "https://turbo.build/schema.json",
"extends": ["//"],
"pipeline": {
"extends": [
"//"
],
"tasks": {
"build": {
"outputs": ["dist/**"]
"outputs": [
"dist/**"
]
}
}
}
14 changes: 10 additions & 4 deletions turbo.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,21 @@
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env.*local"],
"pipeline": {
"globalDependencies": [
"**/.env.*local"
],
"tasks": {
"test": {},
"test:ci": {},
"test:npm": {},
"build": {
"dependsOn": ["^build"]
"dependsOn": [
"^build"
]
},
"lint": {
"dependsOn": ["^lint"]
"dependsOn": [
"^lint"
]
},
"dev": {
"cache": false,
Expand Down

0 comments on commit 859e70a

Please sign in to comment.