Skip to content

Commit 343c8c7

Browse files
committed
fix: turbo.json
1 parent 0cc3ad7 commit 343c8c7

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

turbo.json

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
11
{
2-
"$schema": "./node_modules/turbo/schema.json",
2+
"$schema": "https://turborepo.com/schema.v2.json",
33
"ui": "tui",
44
"tasks": {
55
"dev": {
66
"persistent": true,
7-
"dependsOn": ["^build:deps"],
8-
"outputs": ["dist/**"]
7+
"cache": false,
8+
"interruptible": true,
9+
"dependsOn": ["^build:deps"]
910
},
1011
"build:internal": {
1112
"dependsOn": ["^build:internal", "^build:wasm"],
1213
"outputs": ["dist/**"]
1314
},
1415
"build:wasm": {
15-
"dependsOn": ["^build:wasm","^build:internal"],
16+
"dependsOn": ["^build:wasm"],
1617
"outputs": ["dist/**", "target/**", "pkg/**"],
1718
"inputs": ["dojo.c/**", "crates/**"]
1819
},
@@ -43,7 +44,8 @@
4344
},
4445
"test": {},
4546
"test:watch": {
46-
"persistent": true
47+
"persistent": true,
48+
"cache": false
4749
}
4850
}
4951
}

0 commit comments

Comments
 (0)