diff --git a/gulpfile.js b/gulpfile.js index 17978ff6..b876ffab 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -14,7 +14,10 @@ var gulp = require('gulp'), // Compile Sass, Autoprefix and minify gulp.task('styles', function() { return gulp.src('./assets/scss/**/*.scss') - .pipe(plumber()) + .pipe(plumber(function(error) { + gutil.log(gutil.colors.red(error.message)); + this.emit('end'); + })) .pipe(sass()) .pipe(autoprefixer({ browsers: ['last 2 versions'], @@ -93,4 +96,4 @@ gulp.task('watch', function() { // Watch foundation-js files gulp.watch('./bower_components/foundation/js/foundation/*.js', ['foundation-js']); -}); \ No newline at end of file +});