Files
hctv/turbo.json

43 lines
891 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"build": {
"dependsOn": ["^db:generate", "prepare"],
"outputs": [".next/**", "!.next/cache/**"]
},
"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": true,
"cache": false
},
"db:generate": {
"cache": false
},
"db:migrate": {
"cache": false,
"persistent": true
},
"db:deploy": {
"cache": false
},
"prepare": {
"cache": false
}
}
}