Skip to content

Commit 650fabf

Browse files
committed
Update Turbo
1 parent 74cabb2 commit 650fabf

3 files changed

Lines changed: 70 additions & 46 deletions

File tree

package-lock.json

Lines changed: 35 additions & 35 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"license": "BSD-3-Clause",
88
"dependencies": {
99
"@changesets/cli": "^2.28.1",
10-
"turbo": "^1.13.3"
10+
"turbo": "^2.5.5"
1111
},
1212
"devDependencies": {
1313
"@babel/cli": "^7.28.0",
@@ -44,5 +44,6 @@
4444
},
4545
"workspaces": [
4646
"packages/*"
47-
]
47+
],
48+
"packageManager": "npm@10.9.3"
4849
}

turbo.json

Lines changed: 32 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,50 @@
11
{
22
"$schema": "https://turbo.build/schema.json",
3-
"pipeline": {
3+
"tasks": {
44
"build": {
55
"cache": true,
6-
"dependsOn": ["^build"],
7-
"outputs": ["lib/**"],
8-
"inputs": ["src/**/*", "lib/**/*"]
6+
"dependsOn": [
7+
"^build"
8+
],
9+
"outputs": [
10+
"lib/**"
11+
],
12+
"inputs": [
13+
"src/**/*",
14+
"lib/**/*"
15+
]
916
},
1017
"deploy": {
11-
"dependsOn": ["build", "test", "lint"]
18+
"dependsOn": [
19+
"build",
20+
"test",
21+
"lint"
22+
]
1223
},
1324
"test": {
1425
"cache": true,
15-
"dependsOn": ["build"],
16-
"inputs": ["src/**/*", "lib/**/*"]
26+
"dependsOn": [
27+
"build"
28+
],
29+
"inputs": [
30+
"src/**/*",
31+
"lib/**/*"
32+
]
1733
},
1834
"lint": {
1935
"cache": true,
20-
"inputs": ["src/**/*"]
36+
"inputs": [
37+
"src/**/*"
38+
]
2139
},
2240
"typedoc": {
2341
"cache": false,
24-
"inputs": ["src/**/*", "lib/**/*", "typedoc.config.js", "README.md"]
42+
"inputs": [
43+
"src/**/*",
44+
"lib/**/*",
45+
"typedoc.config.js",
46+
"README.md"
47+
]
2548
},
2649
"dev": {
2750
"cache": false,

0 commit comments

Comments
 (0)