The desktop app imports from the root src directory, but turbo wasn't tracking those files for cache hash calculation. This caused CI builds to use stale hashes when types changed in the root src directory. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
17 lines
309 B
JSON
17 lines
309 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"globalDependencies": ["src/**"],
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"typecheck": {
|
|
"dependsOn": ["^build"]
|
|
}
|
|
}
|
|
}
|