Files
vercel__flags/turbo.json
T
2024-12-12 16:13:46 +02:00

39 lines
823 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": [".env", ".env.local", ".env.development.local"],
"tasks": {
"dev": {
"dependsOn": ["^build"],
"cache": false
},
"build": {
"dependsOn": ["^build"],
"env": ["EDGE_CONFIG", "FLAGS_SECRET"],
"outputs": [".next/**", "!.next/cache/**", "dist/**"]
},
"lint": {
"dependsOn": ["^build"]
},
"type-check": {
"dependsOn": ["^build"]
},
"test": {
"dependsOn": ["^build"]
},
"start": {
"dependsOn": ["^start"]
},
"test:e2e": {
"dependsOn": ["^build", "^start"],
"env": ["FLAGS_SECRET"]
},
"publint": {
"dependsOn": ["^build"]
},
"test:integration": {
"dependsOn": ["^build"]
},
"prettier-check": {}
}
}