mirror of
https://github.com/Mail-0/Zero.git
synced 2026-07-01 08:16:28 +00:00
The 'interactive' flag in the db:push script was unnecessary and has been removed for simplicity. This change ensures consistency across the configuration file and eliminates an unsupported parameter.
35 lines
612 B
JSON
35 lines
612 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"envMode": "loose",
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"inputs": ["$TURBO_DEFAULT$", ".env*"],
|
|
"outputs": [".next/**", "!.next/cache/**"]
|
|
},
|
|
"dev": {
|
|
"dependsOn": ["db:studio"],
|
|
"persistent": true,
|
|
"cache": false
|
|
},
|
|
"start": {
|
|
"cache": false
|
|
},
|
|
"lint": {
|
|
"outputs": []
|
|
},
|
|
"db:generate": {
|
|
"cache": false
|
|
},
|
|
"db:migrate": {
|
|
"cache": false
|
|
},
|
|
"db:push": {
|
|
"cache": false
|
|
},
|
|
"db:studio": {
|
|
"cache": false
|
|
}
|
|
}
|
|
}
|