25 lines
592 B
JSON
Executable File
25 lines
592 B
JSON
Executable File
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"extends": ["../../turbo.json"],
|
|
"tasks": {
|
|
"dev": {
|
|
"dependsOn": ["^db:generate"],
|
|
"cache": false,
|
|
"persistent": true,
|
|
"env": ["NODE_ENV", "DATABASE_URL", "REDIS_URL"]
|
|
},
|
|
"build": {
|
|
"dependsOn": ["^build", "^db:generate"],
|
|
"inputs": ["$TURBO_DEFAULT$", ".env*", "../../shared/**"],
|
|
"outputs": ["dist/**", ".next/**", "!.next/cache/**"]
|
|
},
|
|
"lint": {
|
|
"dependsOn": ["^lint"]
|
|
},
|
|
"test": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["coverage/**"]
|
|
}
|
|
}
|
|
}
|