You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have various tasks in my gulpfile doing different things. When I am using version ^0.6.0 of gulp-watch, my tasks wont finish. Even something as simple as
When I use say version ^0.5.4 it works fine and my tasks finish. I found this out by commenting dependencies within my gulpfile
// var watch = require('gulp-watch');
and came to find that gulp-watch was the culprit I'm afraid. I'm also using ^0.5.4 in another project of mine with very similar tasks and that one works fine.
Thanks! Got reproduced it too. Seems like require('gaze')@0.6.x is hanging node for the moment (check this by moving all var statements into module.exports in gulp-watch).
Turns out it is normal, that gaze will start timer on require. I've published hotfix in 0.6.1 and it shouldn't require gaze from gulp-watch, unless it's called explicitly.
Hey,
I have various tasks in my gulpfile doing different things. When I am using version
^0.6.0
ofgulp-watch
, my tasks wont finish. Even something as simple asWhen I use say version
^0.5.4
it works fine and my tasks finish. I found this out by commenting dependencies within my gulpfile// var watch = require('gulp-watch');
and came to find that
gulp-watch
was the culprit I'm afraid. I'm also using^0.5.4
in another project of mine with very similar tasks and that one works fine.@jh3y
The text was updated successfully, but these errors were encountered: