Files
ontime/turbo.json
T
Carlos Valente 224d3600b2 fix: prevent race conditions on build (#2036)
* fix: prevent race conditions on build

* refactor: upload artifacts and keep for 1 day

* chore: remove deprecated settings

* Revert "refactor: icon compatibility with macos tahoe"

This reverts commit a7a78702b1.
2026-03-25 11:03:41 +01:00

56 lines
1.1 KiB
JSON

{
"$schema": "https://turbo.build/schema.json",
"globalEnv": [
"NODE_ENV",
"GITHUB_TOKEN",
"APPLEID",
"APPLEIDPASS",
"TEAMID",
"CSC_KEY_PASSWORD",
"CSC_LINK",
"SENTRY_AUTH_TOKEN"
],
"tasks": {
"dev": {
"cache": false,
"persistent": true,
"env": ["ROUTER_PREFIX", "IS_CLOUD"]
},
"dev:electron": {
"cache": false,
"persistent": true
},
"dev:inspect": {
"cache": false,
"persistent": true
},
"test": {},
"test:pipeline": {},
"lint": {
"dependsOn": ["^lint"]
},
"typecheck": {
"dependsOn": ["^typecheck"]
},
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", "build/**"]
},
"dist-win": {
"dependsOn": ["build", "ontime-ui#build", "ontime-server#build"],
"outputs": ["dist/**"]
},
"dist-mac": {
"dependsOn": ["build", "ontime-ui#build", "ontime-server#build"],
"outputs": ["dist/**"]
},
"dist-linux": {
"dependsOn": ["build", "ontime-ui#build", "ontime-server#build"],
"outputs": ["dist/**"]
}
}
}