33 lines
638 B
JSON
33 lines
638 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"globalDependencies": ["**/.env.*local"],
|
|
"globalEnv": ["EMAIL_SERVER", "EMAIL_FROM", "SECRET"],
|
|
"ui": "tui",
|
|
"tasks": {
|
|
"generate": {
|
|
"cache": false,
|
|
"persistent": false
|
|
},
|
|
"migrate": {
|
|
"cache": false,
|
|
"persistent": false
|
|
},
|
|
"build": {
|
|
"dependsOn": ["^build", "generate", "migrate"],
|
|
"inputs": ["$TURBO_DEFAULT$", ".env*"],
|
|
"outputs": [".next/**", "!.next/cache/**"]
|
|
},
|
|
"lint": {
|
|
"dependsOn": ["^lint"]
|
|
},
|
|
"check-types": {
|
|
"dependsOn": ["^check-types"]
|
|
},
|
|
"dev": {
|
|
"dependsOn": [],
|
|
"cache": false,
|
|
"persistent": true
|
|
}
|
|
}
|
|
}
|