Files
webnet/turbo.json
T
codingetandClaude a1942ff38e
Checks / lint (pull_request) Successful in 3m5s
Checks / format (pull_request) Successful in 3m6s
Checks / typetest (pull_request) Successful in 9m28s
Checks / typecheck (pull_request) Successful in 9m44s
Checks / build (pull_request) Successful in 9m58s
Browser Tests / browser-tests (pull_request) Successful in 9m11s
Node Tests / node-tests (pull_request) Failing after 14m50s
fix(turbo): make @webnet/tsconnect#typecheck depend on its own build
src/index.ts imports ../dist/wasm_exec.js which only exists after build.sh
runs; the generic typecheck task only declares ^build (dependencies' build)
as a prerequisite, leaving the package's own dist absent in a fresh env.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-24 00:05:27 +00:00

29 lines
567 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", "out/**"]
},
"test": {
"dependsOn": ["^build"]
},
"test:coverage": {
"dependsOn": ["^build"],
"outputs": ["coverage/**"]
},
"typecheck": {
"dependsOn": ["^build"]
},
"@webnet/tsconnect#typecheck": {
"dependsOn": ["build", "^build"]
},
"typetest": {
"dependsOn": ["^build"]
},
"test:browser": {
"dependsOn": ["build", "^build"]
}
}
}