mirror of
https://github.com/cpvalente/ontime.git
synced 2026-07-26 02:28:53 +00:00
224d3600b2
* 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.
56 lines
1.1 KiB
JSON
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/**"]
|
|
}
|
|
}
|
|
}
|