-
Notifications
You must be signed in to change notification settings - Fork 41
Description
I've tried the sample code from the README, and I've tried stealing someone else code from a random project.
In both cases Gulp-Sass-Lint will run, scan all the Sass files I told it to, then either do nothing, or display errors it found in the file. But it never actually stops running. I have to manually stop it.
This means, that if I have a serve task to run a local express server, I can't actually go to the localhost:8000 in the browser, nothing will load because the Gulp-Sass-Lint never stopped running. If I remove it from my list of default tasks, then the server runs fine:
gulp.task('default', ['sass', 'sasslint', 'lint', 'uglify', 'watch', 'serve', 'open']);
If I just run gulp sasslint, again, it works like normal, but it never finishes. Opening up task manager shows I have a node process maxing out one of my CPU's.
| Software | Version |
|---|---|
| Node | 5.5.0 |
| NPM | 3.3.12 |
| Gulp-Sass-Lint | 1.3.2 |
Windows 7 Professional 64-bit