mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2025-12-12 17:26:22 +00:00
44 lines
846 B
JSON
44 lines
846 B
JSON
{
|
|
"pipeline": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["lib/**", "www/**", ".angular/**"]
|
|
},
|
|
"build:docker": {
|
|
"dependsOn": ["//#build:docker-workspace"],
|
|
"cache": false
|
|
},
|
|
"docs": {
|
|
"dependsOn": ["build", "^docs"],
|
|
"outputs": ["docs/**"]
|
|
},
|
|
"format": {},
|
|
"format:fix": {
|
|
"cache": false
|
|
},
|
|
"lint": {
|
|
"dependsOn": ["build"]
|
|
},
|
|
"lint:fix": {
|
|
"dependsOn": ["build", "^lint:fix"],
|
|
"cache": false
|
|
},
|
|
"test": {
|
|
"dependsOn": ["build"],
|
|
"outputs": ["coverage/**"]
|
|
},
|
|
"test:integration": {},
|
|
"dev": {
|
|
"persistent": true,
|
|
"cache": false
|
|
},
|
|
"//#syncpack": {
|
|
"dependsOn": []
|
|
},
|
|
"//#build:docker-workspace": {
|
|
"dependsOn": ["^build"],
|
|
"cache": false
|
|
}
|
|
}
|
|
}
|