Skip to content

Commit 8e45042

Browse files
author
Joe Alves
committed
Handling SASS syntax errors a bit better.
1 parent 73983fa commit 8e45042

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

generated/gulpfile.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,9 @@ gulp.task('testBrowserJS', function (done) {
8181

8282
gulp.task('buildCSS', function () {
8383
return gulp.src('./browser/scss/main.scss')
84-
.pipe(plumber())
85-
.pipe(sass())
84+
.pipe(sass({
85+
errLogToConsole: true
86+
}))
8687
.pipe(rename('style.css'))
8788
.pipe(gulp.dest('./public'));
8889
});

0 commit comments

Comments
 (0)