mirror of
https://github.com/jakejarvis/sofa.git
synced 2026-07-14 18:15:56 -04:00
- 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.
22 lines
408 B
JSON
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": {}
|
|
}
|
|
}
|