-
Notifications
You must be signed in to change notification settings - Fork 50
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
Cannot exclude select files in the loadFiles: [] #117
Comments
+1 |
@roddolf |
@taak77 |
@michaelprescott
|
^ Oh, so that's how it works! Would be good to have a example of this in README. |
@roddolf In my case, i'm trying to exclude any I've tried While we may be able to implement logic to generate the expected expanded file list using an array of glob pattern which include negation, i'm wondering if it's better to introduce Once I have
Any thoughts? |
In my /src/*/, there are some files I don't want to load. I believe I'm using the right pattern:
loadFiles: ['src/**/(*.js|!thisfile.js)]
but that causes "failed to proxy" errors
I've also tried:
`loadFiles: ['src/*/.js', '!src/thisfile.js']
but it has no effect, thisfile.js is still loaded
The text was updated successfully, but these errors were encountered: