Files
zendegi/turbo.json

56 lines
987 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"ui": "tui",
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": ["dist/**", "build/web/**"]
},
"transit": {
"dependsOn": ["^transit"]
},
"lint": {
"dependsOn": ["transit"]
},
"check-types": {
"dependsOn": ["transit"]
},
"dev": {
"cache": false,
"persistent": true
},
"auth:generate": {
"cache": false
},
"db:push": {
"cache": false
},
"db:generate": {
"cache": false
},
"db:migrate": {
"cache": false,
"persistent": true
},
"db:studio": {
"cache": false,
"persistent": true
},
"db:start": {
"cache": false,
"persistent": true
},
"db:stop": {
"cache": false
},
"db:watch": {
"cache": false,
"persistent": true
},
"db:down": {
"cache": false
}
}
}