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

This commit is contained in:
Kit Langton
2026-04-17 00:02:08 +00:00
committed by GitHub
parent 974fa1b8b1
commit 06d247c709
+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"