Files
hctv/turbo.json
2025-08-24 01:00:44 +02:00

44 lines
997 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**", "dist/**", "generated/client/**"],
"env": ["commit", "NODE_ENV", "TURBO_TOKEN", "TURBO_TEAM", "SENTRY_AUTH_TOKEN"]
},
"setup": {
"dependsOn": ["^dd", "^db:generate", "^build"],
"outputs": [".next/**", "!.next/cache/**"]
},
"start": {
"dependsOn": ["^dd", "^db:generate", "^build"],
"outputs": [".next/**", "!.next/cache/**"]
},
"check-types": {
"dependsOn": ["^check-types"]
},
"dev": {
"dependsOn": ["dd", "^db:generate"],
"persistent": true,
"cache": false
},
"dd": {
"persistent": false,
"cache": false
},
"db:generate": {
"cache": false
},
"db:migrate": {
"cache": false,
"persistent": true
},
"db:deploy": {
"cache": false
},
"prepare": {
"cache": false
}
}
}