mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-03 12:02:53 +00:00
32 lines
597 B
JSON
32 lines
597 B
JSON
{
|
|
"pipeline": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["lib/**", "www/**", ".angular/**"]
|
|
},
|
|
"docs": {
|
|
"dependsOn": ["^docs"],
|
|
"outputs": ["docs/**"]
|
|
},
|
|
"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"]
|
|
}
|
|
}
|
|
}
|