Files
openstapps/turbo.json
2023-06-29 16:01:42 +02:00

51 lines
1.1 KiB
JSON

{
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": ["lib/**", "www/**", ".angular/**"],
"cache": true
},
"build:docker": {
"dependsOn": ["//#build:docker-workspace"],
"cache": false
},
"deploy": {
"dependsOn": ["build", "^deploy"]
},
"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/cobertura-coverage.xml", "coverage/report-junit.xml"]
},
"test:integration": {
"dependsOn": ["build"],
"outputs": ["coverage/integration-cobertura-coverage.xml", "coverage/integration-report-junit.xml"]
},
"dev": {
"persistent": true,
"cache": false
},
"//#syncpack": {
"dependsOn": []
},
"//#build:docker-workspace": {
"dependsOn": ["^build"],
"cache": false
}
}
}