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
[14:25:05] Error: watch ENOSPC
at errnoException (fs.js:1031:11)
at FSWatcher.start (fs.js:1063:11)
at Object.fs.watch (fs.js:1088:11)
at Gaze._watchDir (/home/ashish/codebase/coef/coef-web-app/node_modules/gulp/node_modules/vinyl-fs/node_modules/glob-watcher/node_modules/gaze/lib/gaze.js:289:30)
at /home/ashish/codebase/coef/coef-web-app/node_modules/gulp/node_modules/vinyl-fs/node_modules/glob-watcher/node_modules/gaze/lib/gaze.js:358:10
at iterate (/home/ashish/codebase/coef/coef-web-app/node_modules/gulp/node_modules/vinyl-fs/node_modules/glob-watcher/node_modules/gaze/lib/helper.js:52:5)
at Object.forEachSeries (/home/ashish/codebase/coef/coef-web-app/node_modules/gulp/node_modules/vinyl-fs/node_modules/glob-watcher/node_modules/gaze/lib/helper.js:66:3)
at Gaze._initWatched (/home/ashish/codebase/coef/coef-web-app/node_modules/gulp/node_modules/vinyl-fs/node_modules/glob-watcher/node_modules/gaze/lib/gaze.js:354:10)
at Gaze.add (/home/ashish/codebase/coef/coef-web-app/node_modules/gulp/node_modules/vinyl-fs/node_modules/glob-watcher/node_modules/gaze/lib/gaze.js:177:8)
at new Gaze (/home/ashish/codebase/coef/coef-web-app/node_modules/gulp/node_modules/vinyl-fs/node_modules/glob-watcher/node_modules/gaze/lib/gaze.js:74:10)
Error running task sequence: { [Error: watch ENOSPC] code: 'ENOSPC', errno: 'ENOSPC', syscall: 'watch' }
Following is my gulp task:
var gulp = require('gulp');
var config = require('../config');
var runSequence = require('run-sequence');
gulp.task('watch', function(){
runSequence( 'js', 'sass', 'browserSync');
gulp.watch([config.sass.src, 'node_modules/bootstrap-sass/assets/stylesheets/**/*'], ['sass']);
gulp.watch([config.js.src], ['js']);
gulp.watch([config.html.src], ['html']);
gulp.watch([config.locales.src], ['locales'])
});
My colleague is not getting this error who's on 0.5.1 version. I checked that glob-watcher package was using 0.5.2 version in my case.
Following is my gulp task:
My colleague is not getting this error who's on 0.5.1 version. I checked that
glob-watcher
package was using0.5.2
version in my case.I searched through SO and all says to upgrade to 0.5.x version but I am seeing the issue still in
0.5.1
The text was updated successfully, but these errors were encountered: