refactor: app deployment

This commit is contained in:
2023-06-05 10:54:18 +02:00
parent b21833de40
commit 3b8a344d73
104 changed files with 583 additions and 13494 deletions

View File

@@ -4,28 +4,40 @@
"dependsOn": ["^build"],
"outputs": ["lib/**", "www/**", ".angular/**"]
},
"build:docker": {
"dependsOn": ["//#build:docker-workspace"],
"cache": false
},
"docs": {
"dependsOn": ["^docs"],
"dependsOn": ["build", "^docs"],
"outputs": ["docs/**"]
},
"format": {
"dependsOn": ["^format"]
},
"format": {},
"format:fix": {
"dependsOn": ["^format:fix"]
"cache": false
},
"lint": {
"dependsOn": ["^lint"]
"dependsOn": ["build"]
},
"lint:fix": {
"dependsOn": ["^lint:fix"]
"dependsOn": ["build", "^lint:fix"],
"cache": false
},
"test": {
"dependsOn": ["^test"],
"dependsOn": ["build"],
"outputs": ["coverage/**"]
},
"check-configuration": {
"dependsOn": ["^check-configuration"]
"test:integration": {},
"dev": {
"persistent": true,
"cache": false
},
"//#syncpack": {
"dependsOn": []
},
"//#build:docker-workspace": {
"dependsOn": ["^build"],
"cache": false
}
}
}