Created
April 27, 2014 12:50
-
-
Save floatdrop/11344836 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var onError = function (err) { | |
gutil.beep(); | |
console.log(err); | |
}; | |
gulp.task('styles', function () { | |
gulp.src('scss/style.scss') | |
.pipe(plumber(onError) | |
.pipe(rubysass()) | |
.pipe(gulp.dest('dist/')); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Line 8: missing closing parenthesis
Should read:
gulp.src('scss/style.scss'))
Linked here from How to Handle Gulp Watch Errors with Plumber