Files
sofa/turbo.json
jake 1bf12d3884 fix: update Dockerfile and turbo.json to include APP_VERSION and GIT_COMMIT_SHA as environment variables
- Added APP_VERSION and GIT_COMMIT_SHA arguments to Dockerfile for versioning and commit tracking.
- Updated turbo.json to pass APP_VERSION and GIT_COMMIT_SHA as environment variables for build tasks.
2026-03-24 11:08:30 -04:00

22 lines
408 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"ui": "tui",
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"],
"env": ["APP_VERSION", "GIT_COMMIT_SHA"]
},
"dev": {
"dependsOn": ["^build"],
"persistent": true,
"cache": false
},
"lint": {},
"format": {},
"format:check": {},
"check-types": {},
"test": {}
}
}