Description:
scripts/setup-env.ts imports globSync from "glob" with an inline comment reading "we might not have glob installed, but we can use fs.readdirSync recursively or just hardcode apps/*" — the import is never used since the script falls back to a hand-rolled findEnvExamples recursive walker. This is confusing dead code that looks unfinished and adds an unnecessary dependency.
Acceptance Criteria:
Relevant Files:
scripts/setup-env.ts — unused glob import with stale reasoning comment at top of file
Description:
scripts/setup-env.ts imports globSync from "glob" with an inline comment reading "we might not have glob installed, but we can use fs.readdirSync recursively or just hardcode apps/*" — the import is never used since the script falls back to a hand-rolled findEnvExamples recursive walker. This is confusing dead code that looks unfinished and adds an unnecessary dependency.
Acceptance Criteria:
import { globSync } from "glob"line and the leftover commentRelevant Files:
scripts/setup-env.ts— unused glob import with stale reasoning comment at top of file