mirror of
https://github.com/cpvalente/ontime.git
synced 2026-07-26 10:38:55 +00:00
ee3d38fce8
* descripe testing for cloud * use base url directly * lint
56 lines
990 B
JSON
56 lines
990 B
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"]
|
|
},
|
|
"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"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"dist-mac": {
|
|
"dependsOn": ["build"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"dist-linux": {
|
|
"dependsOn": ["build"],
|
|
"outputs": ["dist/**"]
|
|
}
|
|
}
|
|
}
|