mirror of
https://github.com/SrIzan10/hctv.git
synced 2026-06-06 00:56:56 +00:00
43 lines
904 B
JSON
43 lines
904 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^db:generate", "prepare"],
|
|
"outputs": [".next/**", "!.next/cache/**", "dist/**"]
|
|
},
|
|
"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
|
|
}
|
|
}
|
|
}
|