23 lines
529 B
JSON
23 lines
529 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"globalDependencies": ["**/.env.*local"],
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**", ".build/**", ".svelte-kit/**", ".svelte/**"],
|
|
"env": [
|
|
"VITE_SANITY_*",
|
|
"VITE_API_*",
|
|
"PUBLIC_*",
|
|
"SWELL_API_*",
|
|
"NEWSLETTER_*"
|
|
]
|
|
},
|
|
"check": {},
|
|
"lint": {},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
}
|
|
}
|
|
} |