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