-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
Gulp 4: TypeError: undefined is not a function when passing array inside array #1287
Comments
Adding @es128 as it seems to be chokidar related again. |
Dupe of paulmillr/chokidar#360 Chokidar does not currently flatten arrays for you - input is expected to be a string or one-dimensional array of strings. But we could change that pretty easily if this use-case is common (as it is beginning to appear to be). |
I don't like supporting nested arrays |
This is a very common use case for our team and please note it just started to fail. It worked fine last week. |
meh I don't think there is a problem with flattening it, do you @phated? |
@demisx relying on undocumented features will cause that to happen. Use |
@phated Sorry, didn't realize the nested arrays were an undocumented feature. Sure, I can do |
Nah, just that it's going to need to be flattened somewhere along the way to be used like this, and nobody ever promised gulp would do it for you, even though it has been working up to this point. Looks like we may be adding it to chokidar, though. |
@es128 Gotcha. Totally understand not trying to fit every corner case. I thought this would be a pretty common pattern for the gulp usage, but I may be wrong. Just for those, who come across this post looking for the immediate solution, here is what fixes it now: var _ = require('lodash');
... ... ...
gulp.task('watch:code', function () {
gulp.watch(_.flatten([
paths.html,
paths.js,
paths.images,
paths.json
], true), gulp.series('build', browserSync.reload));
}); |
I'm getting error with this
Error
|
We have a
watch:code
task defined like this:Running this task generates this error now:
The error seems to happen when passing an array of paths to the
gulp.watch()
function when one or more of those paths is also an array.The text was updated successfully, but these errors were encountered: