Open
Description
While my watch task is active and the scss-lint task is run, I sporadically get errors like the following:
events.js:85
throw er; // Unhandled 'error' event
^
Error: ENOENT, open '/path/to/some/filename_scsslint_tmp4101218392592792874.scss'
at Error (native)
I suspect it's because I'm also running the scss-lint plugin for PhpStorm (so I can catch issues even before saving), and that it creates these temp files.
I've excluded them from the src
in the Gulp task, using gulp-ignore
, like so:
gulp.task('scss-lint', function() {
return gulp.src('src/styles/**/*.scss')
.pipe($.ignore.exclude('**/*_scsslint_tmp*.scss'))
.pipe($.scssLint())
});
...and have confirmed with gulp-debug
that the temp files aren't piped to scss-lint – yet I still get these errors from time to time. I haven't found a way to consistently reproduce the error unfortunately. Any ideas?
Metadata
Metadata
Assignees
Labels
No labels