@@ -35,6 +35,24 @@ const checkCwdOption = options => {
35
35
} ;
36
36
37
37
const getPathString = fastGlobResult => fastGlobResult . path || fastGlobResult ;
38
+ const unionFastGlobResults = ( results , filter ) => {
39
+ const seen = new Set ( ) ;
40
+
41
+ return results . flat ( ) . filter ( fastGlobResult => {
42
+ if ( filter ( fastGlobResult ) ) {
43
+ return false ;
44
+ }
45
+
46
+ const value = getPathString ( fastGlobResult ) ;
47
+ if ( seen . has ( value ) ) {
48
+ return false ;
49
+ }
50
+
51
+ seen . add ( value ) ;
52
+
53
+ return true ;
54
+ } ) ;
55
+ } ;
38
56
39
57
export const generateGlobTasks = ( patterns , taskOptions ) => {
40
58
patterns = arrayUnion ( [ patterns ] . flat ( ) ) ;
@@ -150,9 +168,9 @@ export const globby = async (patterns, options = {}) => {
150
168
} ;
151
169
152
170
const [ filter , tasks ] = await Promise . all ( [ getFilter ( options ) , getTasks ( ) ] ) ;
153
- const paths = await Promise . all ( tasks . map ( task => fastGlob ( task . pattern , task . options ) ) ) ;
171
+ const results = await Promise . all ( tasks . map ( task => fastGlob ( task . pattern , task . options ) ) ) ;
154
172
155
- return arrayUnion ( ... paths ) . filter ( path_ => ! filter ( path_ ) ) ;
173
+ return unionFastGlobResults ( results , filter ) ;
156
174
} ;
157
175
158
176
export const globbySync = ( patterns , options = { } ) => {
@@ -165,13 +183,9 @@ export const globbySync = (patterns, options = {}) => {
165
183
}
166
184
167
185
const filter = getFilterSync ( options ) ;
186
+ const results = tasks . map ( task => fastGlob . sync ( task . pattern , task . options ) ) ;
168
187
169
- let matches = [ ] ;
170
- for ( const task of tasks ) {
171
- matches = arrayUnion ( matches , fastGlob . sync ( task . pattern , task . options ) ) ;
172
- }
173
-
174
- return matches . filter ( path_ => ! filter ( path_ ) ) ;
188
+ return unionFastGlobResults ( results , filter ) ;
175
189
} ;
176
190
177
191
export const globbyStream = ( patterns , options = { } ) => {
@@ -184,8 +198,8 @@ export const globbyStream = (patterns, options = {}) => {
184
198
}
185
199
186
200
const filter = getFilterSync ( options ) ;
187
- const filterStream = new FilterStream ( p => ! filter ( p ) ) ;
188
- const uniqueStream = new UniqueStream ( ) ;
201
+ const filterStream = new FilterStream ( fastGlobResult => ! filter ( fastGlobResult ) ) ;
202
+ const uniqueStream = new UniqueStream ( fastGlobResult => getPathString ( fastGlobResult ) ) ;
189
203
190
204
return merge2 ( tasks . map ( task => fastGlob . stream ( task . pattern , task . options ) ) )
191
205
. pipe ( filterStream )
0 commit comments