Add recipes in turbo.json
This commit is contained in:
parent
abc0e65a86
commit
3c8e3c6af3
1 changed files with 22 additions and 0 deletions
22
turbo.json
22
turbo.json
|
|
@ -43,6 +43,28 @@
|
|||
"cache": false,
|
||||
"persistent": true
|
||||
},
|
||||
"deploy": {
|
||||
"dependsOn": ["build"],
|
||||
"cache": false
|
||||
},
|
||||
"deploy:staging": {
|
||||
"dependsOn": ["build:staging"],
|
||||
"cache": false
|
||||
},
|
||||
"deploy:prod": {
|
||||
"dependsOn": ["build:prod"],
|
||||
"cache": false
|
||||
},
|
||||
"build:staging": {
|
||||
"dependsOn": ["^build"],
|
||||
"outputs": ["dist/**"],
|
||||
"outputLogs": "new-only"
|
||||
},
|
||||
"build:prod": {
|
||||
"dependsOn": ["^build"],
|
||||
"outputs": ["dist/**"],
|
||||
"outputLogs": "new-only"
|
||||
},
|
||||
"clean": {
|
||||
"cache": false
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue