Skip to content
This repository has been archived by the owner on Sep 10, 2019. It is now read-only.

Commit

Permalink
Merge pull request #226 from zurb/213-scss-errors
Browse files Browse the repository at this point in the history
Print out error when scss fails rather than crashing watch process
  • Loading branch information
AntJanus committed Dec 5, 2014
2 parents f92ea15 + c80f567 commit 4f31094
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,9 @@ gulp.task('sass', function() {
style: 'nested',
bundleExec: true
}))
.on('error', function(e) {
console.log(e);
})
.pipe(autoprefixer({
browsers: ['last 2 versions', 'ie 10']
}))
Expand Down

0 comments on commit 4f31094

Please sign in to comment.