Files
var-monorepo/turbo.json
2025-02-25 00:45:36 +01:00

38 lines
786 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
}
}
}