mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-07 00:13:53 +00:00
fc7ed6bd20
* refactor: turbo scripts refactor dev and build scripts remove cleanup * fix e2e script * cache playwright * cache pnpm * fix docker env in vite * fixup! refactor: turbo scripts * chore: add comment
59 lines
1.0 KiB
JSON
59 lines
1.0 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
|
|
},
|
|
"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-mac:local": {
|
|
"dependsOn": ["build"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"dist-linux": {
|
|
"dependsOn": ["build"],
|
|
"outputs": ["dist/**"]
|
|
}
|
|
}
|
|
}
|