We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe7d65d commit e83201eCopy full SHA for e83201e
src/utils/glob.mts
@@ -260,7 +260,8 @@ export async function globWithGitIgnore(
260
if (!hasNegatedPattern && !filter) {
261
return await fastGlob.glob(patterns as string[], globOptions)
262
}
263
-
+ // Add support for negated "ignore" patterns which many globbing libraries,
264
+ // including 'fast-glob', 'globby', and 'tinyglobby', lack support for.
265
// Use streaming to avoid unbounded memory accumulation.
266
// This is critical for large monorepos with 100k+ files.
267
const results: string[] = []
0 commit comments