We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
cwd
When a cwd option is provided, it appears as though negative globs do not properly get applied.
For example, given a watcher:
watch([ 'bar/**', '!bar/*.css' ], { cwd : 'foo' }, someFunction);
A change to foo/bar/styles.css still triggers someFunction to be invoked.
foo/bar/styles.css
someFunction
The text was updated successfully, but these errors were encountered:
5062520
@JGets Thanks for reporting. Sorry for the extreme delay here. The team has been swamped and I had to create a repro for this in our test suite.
I'm getting a patch published as 5.0.4 once CI finishes.
Sorry, something went wrong.
No branches or pull requests
When a
cwd
option is provided, it appears as though negative globs do not properly get applied.For example, given a watcher:
A change to
foo/bar/styles.css
still triggerssomeFunction
to be invoked.The text was updated successfully, but these errors were encountered: