From 4201cbcb9e20b48056f22b5012d5a245a0aee622 Mon Sep 17 00:00:00 2001 From: Lum1104 Date: Fri, 10 Apr 2026 11:36:53 +0800 Subject: [PATCH] feat(core): export IgnoreFilter and IgnoreGenerator from core index --- understand-anything-plugin/packages/core/src/index.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/understand-anything-plugin/packages/core/src/index.ts b/understand-anything-plugin/packages/core/src/index.ts index 756284d..0375dad 100644 --- a/understand-anything-plugin/packages/core/src/index.ts +++ b/understand-anything-plugin/packages/core/src/index.ts @@ -114,3 +114,9 @@ export { ShellParser, registerAllParsers, } from "./plugins/parsers/index.js"; +export { + createIgnoreFilter, + DEFAULT_IGNORE_PATTERNS, + type IgnoreFilter, +} from "./ignore-filter.js"; +export { generateStarterIgnoreFile } from "./ignore-generator.js";