Ändere Skriptnamen in package.json und turbo.json für Konsistenz und Klarheit

This commit is contained in:
PxlLoewe
2025-03-07 06:08:42 -07:00
parent 0d7c3a365c
commit c1f1ad47b7
3 changed files with 8 additions and 8 deletions

View File

@@ -4,16 +4,16 @@
"globalEnv": ["EMAIL_SERVER", "EMAIL_FROM", "SECRET"],
"ui": "tui",
"tasks": {
"db:generate": {
"generate": {
"cache": false,
"persistent": true
},
"db:migrate": {
"migrate": {
"cache": false,
"persistent": true
},
"build": {
"dependsOn": ["^build", "db:generate", "db:migrate"],
"dependsOn": ["^build", "generate", "migrate"],
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": [".next/**", "!.next/cache/**"]
},