Skip to content

Commit

Permalink
Upgrade turbo
Browse files Browse the repository at this point in the history
  • Loading branch information
cb1kenobi committed Jun 8, 2024
1 parent 7201a69 commit aa52682
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 41 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@
"@types/node": "20.14.2",
"@vitest/coverage-v8": "1.6.0",
"lefthook": "1.6.15",
"turbo": "1.13.4",
"turbo": "2.0.3",
"typescript": "5.4.5",
"vitest": "1.6.0"
}
},
"packageManager": "[email protected]"
}
58 changes: 29 additions & 29 deletions pnpm-lock.yaml

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

33 changes: 23 additions & 10 deletions turbo.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,33 @@
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["package.json", "tsconfig.base.json"],
"pipeline": {
"globalDependencies": [
"package.json",
"tsconfig.base.json"
],
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputMode": "new-only",
"outputs": ["dist/**"]
"dependsOn": [
"^build"
],
"outputs": [
"dist/**"
],
"outputLogs": "new-only"
},
"coverage": {
"dependsOn": ["^build"],
"outputMode": "new-only",
"outputs": ["coverage/**"]
"dependsOn": [
"^build"
],
"outputs": [
"coverage/**"
],
"outputLogs": "new-only"
},
"test": {
"dependsOn": ["^build"],
"outputMode": "new-only"
"dependsOn": [
"^build"
],
"outputLogs": "new-only"
},
"type-check": {}
}
Expand Down

0 comments on commit aa52682

Please sign in to comment.