Files
ontime/turbo.json
T
google-labs-jules[bot] cdd021e76d Docs: Update DEVELOPMENT.MD with explicit turbo run commands
Updated DEVELOPMENT.MD to use `turbo run <task>` instead of `turbo <task>` for clarity and consistency when referring to Turborepo tasks that don't have a direct pnpm script alias.

Also, added `dependsOn: ["build"]` to `dist-*` tasks in `turbo.json` to ensure correct build order before packaging.
2025-07-12 22:12:17 +02:00

52 lines
982 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"globalEnv": ["NODE_ENV", "GITHUB_TOKEN", "APPLEID", "APPLEIDPASS", "TEAMID", "CSC_KEY_PASSWORD", "CSC_LINK"],
"tasks": {
"dev": {
"cache": false,
"persistent": true
},
"dev:server": {
"cache": false,
"persistent": true
},
"dev:test": {
"cache": false
},
"test": {},
"test:pipeline": {},
"lint": {
"cache": false
},
"typecheck": {
"cache": false
},
"build": {
"env": ["SENTRY_AUTH_TOKEN"]
},
"build:local": {},
"build:electron": {
"env": ["SENTRY_AUTH_TOKEN"]
},
"build:localdocker": {},
"e2e": {
"dependsOn": [
"^build"
]
},
"dist-win": {
"dependsOn": ["build"]
},
"dist-mac": {
"dependsOn": ["build"]
},
"dist-mac:local": {
"dependsOn": ["build"]
},
"dist-linux": {
"dependsOn": ["build"]
},
"cleanup": {}
}
}