mirror of
https://github.com/cpvalente/ontime.git
synced 2026-07-26 10:38:55 +00:00
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.
This commit is contained in:
committed by
Carlos Valente
parent
05d01e0863
commit
cdd021e76d
+12
-6
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"$schema": "https://turbo.build/schema.json",
|
||||
"globalEnv": ["NODE_ENV", "GITHUB_TOKEN"],
|
||||
"globalEnv": ["NODE_ENV", "GITHUB_TOKEN", "APPLEID", "APPLEIDPASS", "TEAMID", "CSC_KEY_PASSWORD", "CSC_LINK"],
|
||||
"tasks": {
|
||||
"dev": {
|
||||
"cache": false,
|
||||
@@ -34,12 +34,18 @@
|
||||
"^build"
|
||||
]
|
||||
},
|
||||
"dist-win": {},
|
||||
"dist-mac": {
|
||||
"env": ["APPLEID", "APPLEIDPASS", "TEAMID", "CSC_KEY_PASSWORD", "CSC_LINK"]
|
||||
"dist-win": {
|
||||
"dependsOn": ["build"]
|
||||
},
|
||||
"dist-mac": {
|
||||
"dependsOn": ["build"]
|
||||
},
|
||||
"dist-mac:local": {
|
||||
"dependsOn": ["build"]
|
||||
},
|
||||
"dist-linux": {
|
||||
"dependsOn": ["build"]
|
||||
},
|
||||
"dist-mac:local": {},
|
||||
"dist-linux": {},
|
||||
"cleanup": {}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user