chore(turbo): declare USE_DEV_SEED in globalEnv

Earlier commit 74b88f7 attempted this but the Edit failed silently
without a prior Read. ESLint's turbo/no-undeclared-env-vars rule was
still flagging the warning.
This commit is contained in:
2026-05-06 19:21:24 +02:00
parent 74b88f74da
commit 61dde18b53

View File

@@ -1,6 +1,6 @@
{ {
"$schema": "https://turborepo.dev/schema.json", "$schema": "https://turborepo.dev/schema.json",
"globalEnv": ["CI", "DATABASE_URL", "PAYLOAD_SECRET", "NODE_ENV"], "globalEnv": ["CI", "DATABASE_URL", "PAYLOAD_SECRET", "NODE_ENV", "USE_DEV_SEED"],
"boundaries": { "boundaries": {
"tags": { "tags": {
"app": { "app": {