-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Multiple globs (negation specifically) #1
Comments
can you give an example of what the syntax would look like? I'd be happy to take a pull request for this. |
glob(['./**/*.js', '!./node_modules/**/*.js']).pipe(log()) // glob all js files except vendor Right now I have my own glob-stream module I'm going to implement this filter into but I will try to make some time to PR the feature into this lib as well so I can eventually switch to it. |
okay, looking forward to your pull request. |
i want this feature for the same use case, but i still need to wrap my head around what the code is doing... 😃 |
Would it be possible to rewrite this to use micromatch, or is that simply not possible due to what the code does (which I also have a hard time wrapping my head around 😄). |
Just to chime in, I would like to use this for pull-vinyl, I suspect @joakim had same idea. :p |
You read my mind :) I'm working on a local fork of your (otherwise great) module right now actually, using @contra's glob-stream + |
@joakim it would be very easy to have pull-glob support multiple globs with |
No description provided.
The text was updated successfully, but these errors were encountered: