39 lines
749 B
JSON
39 lines
749 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"globalDependencies": ["**/.env.*local"],
|
|
"ui": "tui",
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build", "test"],
|
|
"outputs": [".next/**", "!.next/cache/**"],
|
|
"env": [
|
|
"ARCJET_KEY",
|
|
"BETTERSTACK_API_KEY",
|
|
"BETTERSTACK_URL",
|
|
"DATABASE_URL",
|
|
"FLAGS_SECRET",
|
|
"SENTRY_AUTH_TOKEN",
|
|
"SENTRY_ORG",
|
|
"SENTRY_PROJECT",
|
|
"SVIX_TOKEN"
|
|
]
|
|
},
|
|
"test": {
|
|
"dependsOn": ["^test"]
|
|
},
|
|
"analyze": {
|
|
"dependsOn": ["^analyze"]
|
|
},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"clean": {
|
|
"cache": false
|
|
},
|
|
"//#clean": {
|
|
"cache": false
|
|
}
|
|
}
|
|
}
|