Skip to content
This repository was archived by the owner on May 4, 2019. It is now read-only.

Commit 21ad53d

Browse files
Brandon PaterakBrandon Paterak
Brandon Paterak
authored and
Brandon Paterak
committed
added a steam end to gulp-less to prevent less errors stopping watch
1 parent ba0a396 commit 21ad53d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gulpfile.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ function _less() {
9191
'./src/main/less/style.less'
9292
])
9393
.pipe(less())
94-
.on('error', log)
94+
.on('error', function(err){ log(err); this.emit('end');})
9595
.pipe(gulp.dest('./src/main/html/css/'))
9696
.pipe(connect.reload());
9797
}

0 commit comments

Comments
 (0)