chore: update deps + turbo 2.0

This commit is contained in:
2024-07-15 22:24:31 +02:00
parent 40a3c2b605
commit 3fefd78edf
7 changed files with 54 additions and 46 deletions

View File

@@ -1,15 +1,23 @@
{
"$schema": "https://turborepo.org/schema.json",
"pipeline": {
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env.*local"],
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", ".build/**"]
"outputs": ["dist/**", ".build/**", ".svelte-kit/**", ".svelte/**"],
"env": [
"VITE_SANITY_*",
"VITE_API_*",
"PUBLIC_*",
"SWELL_API_*",
"NEWSLETTER_*"
]
},
"lint": {
"outputs": []
},
"dev": {
"cache": false
}
"check": {},
"lint": {},
"dev": {
"cache": false,
"persistent": true
}
}
}