refactor: unwrap FileIgnore namespace + self-reexport (#22937)

This commit is contained in:
Kit Langton
2026-04-16 20:02:08 -04:00
committed by GitHub
parent 3d789619ba
commit 378d934122
+2 -2
View File
@@ -1,6 +1,5 @@
import { Glob } from "@opencode-ai/shared/util/glob" import { Glob } from "@opencode-ai/shared/util/glob"
export namespace FileIgnore {
const FOLDERS = new Set([ const FOLDERS = new Set([
"node_modules", "node_modules",
"bower_components", "bower_components",
@@ -78,4 +77,5 @@ export namespace FileIgnore {
return false return false
} }
}
export * as FileIgnore from "./ignore"