fix(turbo): hash local env inputs

This commit is contained in:
vince 2026-06-20 07:48:54 +02:00
parent 3ff41e771b
commit 24e7e8eda0
2 changed files with 17 additions and 0 deletions

View file

@ -9,6 +9,7 @@
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": ["dist/**", "build/**"],
"env": ["NODE_ENV", "VITE_*"]
},
@ -29,6 +30,7 @@
},
"build-storybook": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": ["storybook-static/**"],
"env": ["NODE_ENV", "STORYBOOK_*", "VITE_*"]
},