Add recipes in turbo.json

This commit is contained in:
Arthur Belleville 2026-04-15 17:19:13 +02:00
parent abc0e65a86
commit 3c8e3c6af3
No known key found for this signature in database

View file

@ -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
}