Skip to content

Commit

Permalink
Upgrade turbo to v2 (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
hamlim authored Jul 1, 2024
1 parent b60f30c commit b52db0d
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 8 deletions.
Binary file modified bun.lockb
Binary file not shown.
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
"devDependencies": {
"@turbo/gen": "1.13.3",
"dprint": "0.45.0",
"turbo": "1.13.3",
"one-version": "workspace:*"
"one-version": "workspace:*",
"turbo": "2.0.6"
},
"scripts": {
"dev": "turbo run dev",
Expand All @@ -22,5 +22,6 @@
"test": "turbo run test",
"one-version:check": "one-version check",
"generator": "bun ./scripts/generator.ts"
}
},
"packageManager": "[email protected]"
}
19 changes: 14 additions & 5 deletions turbo.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,25 @@
{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", ".next/**"]
"dependsOn": [
"^build"
],
"outputs": [
"dist/**",
".next/**"
]
},
"type-check": {
"dependsOn": ["^build"]
"dependsOn": [
"^build"
]
},
"lint": {},
"test": {
"dependsOn": ["^build"]
"dependsOn": [
"^build"
]
},
"dev": {
"persistent": true
Expand Down

0 comments on commit b52db0d

Please sign in to comment.