Files
ontime/turbo.json
T
Alex Christoffer Rasmussen ee3d38fce8 Fix link to host in local network (#1843)
* descripe testing for cloud

* use base url directly

* lint
2025-10-27 11:19:21 +01:00

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/**"]
}
}
}