mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-06 07:53:54 +00:00
cdd021e76d
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.
52 lines
982 B
JSON
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": {}
|
|
}
|
|
}
|