Skip to content

Commit f9d35ae

Browse files
authoredFeb 2, 2022
Fix duplicated result when using globstar (#231)
1 parent 9f53ca5 commit f9d35ae

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed
 

‎index.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import fs from 'node:fs';
2+
import nodePath from 'node:path';
23
import merge2 from 'merge2';
34
import fastGlob from 'fast-glob';
45
import dirGlob from 'dir-glob';
@@ -84,8 +85,9 @@ const createFilterFunction = isIgnored => {
8485

8586
return fastGlobResult => {
8687
const path = fastGlobResult.path || fastGlobResult;
87-
const seenOrIgnored = seen.has(path) || (isIgnored && isIgnored(path));
88-
seen.add(path);
88+
const pathKey = nodePath.normalize(path);
89+
const seenOrIgnored = seen.has(pathKey) || (isIgnored && isIgnored(path));
90+
seen.add(pathKey);
8991
return !seenOrIgnored;
9092
};
9193
};

‎tests/globby.js

+7
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,13 @@ test('glob - stream async iterator support', async t => {
116116
t.deepEqual(results, ['a.tmp', 'b.tmp', 'c.tmp', 'd.tmp', 'e.tmp']);
117117
});
118118

119+
test('glob - duplicated patterns', async t => {
120+
const result1 = await runGlobby(t, [`./${temporary}/**`, `./${temporary}`]);
121+
t.deepEqual(result1, ['./tmp/a.tmp', './tmp/b.tmp', './tmp/c.tmp', './tmp/d.tmp', './tmp/e.tmp']);
122+
const result2 = await runGlobby(t, [`./${temporary}`, `./${temporary}/**`]);
123+
t.deepEqual(result2, ['tmp/a.tmp', 'tmp/b.tmp', 'tmp/c.tmp', 'tmp/d.tmp', 'tmp/e.tmp']);
124+
});
125+
119126
test.serial('cwd option', async t => {
120127
process.chdir(temporary);
121128
t.deepEqual(await runGlobby(t, '*.tmp', {cwd}), ['a.tmp', 'b.tmp', 'c.tmp', 'd.tmp', 'e.tmp']);

0 commit comments

Comments
 (0)
Please sign in to comment.