mirror of
https://github.com/vercel/flags.git
synced 2026-09-19 03:49:23 +08:00
39 lines
823 B
JSON
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": {}
|
|
}
|
|
}
|