mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-03 12:02:53 +00:00
29 lines
530 B
JSON
29 lines
530 B
JSON
{
|
|
"pipeline": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["lib/**", "www/**", ".angular/**"]
|
|
},
|
|
"format": {
|
|
"dependsOn": ["^format"]
|
|
},
|
|
"format:fix": {
|
|
"dependsOn": ["^format:fix"]
|
|
},
|
|
"lint": {
|
|
"dependsOn": ["^lint"]
|
|
},
|
|
"lint:fix": {
|
|
"dependsOn": ["^lint:fix"]
|
|
},
|
|
"test": {
|
|
"dependsOn": ["^test"],
|
|
"outputs": ["coverage"]
|
|
},
|
|
"check-configuration": {
|
|
"dependsOn": ["^check-configuration"]
|
|
},
|
|
"docs": {}
|
|
}
|
|
}
|