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
When there is a midline, the watch result is wrong.
var gulp = require(‘gulp'); gulp.task('watch', series(() => { watch([ 'src/**/*', ], { ignored: [ 'src/abc/**/*', ] }, () => { return gulp.src('src/**/*') .pipe(gulp.dest('es')); }).on('all', (stats, file) => { console.log(`File [${file}] ${stats}`); }) }));
src/abc-def/index.js should be watched
src/abc-def/index.js
src/abc-def/index.js is ignored
The primary cause is anymatch. see micromatch/anymatch#35
We should update anymatch (the dependencies of glob-watcher) to the latest, then update glob-watcher (the dependencies of gulp) to the latest
The text was updated successfully, but these errors were encountered:
Moved to the appropriate issue tracker.
Sorry, something went wrong.
@sttk can you take a look at this? I'm not sure if it is still a problem since we've updated dependencies. Perhaps you can add a test?
No branches or pull requests
When there is a midline, the watch result is wrong.
Please give us a sample of your gulpfile
What were you expecting to happen?
src/abc-def/index.js
should be watchedWhat actually happened?
src/abc-def/index.js
is ignoredAdditional information
The primary cause is anymatch. see micromatch/anymatch#35
We should update anymatch (the dependencies of glob-watcher) to the latest, then update glob-watcher (the dependencies of gulp) to the latest
The text was updated successfully, but these errors were encountered: