Skip to content

Commit

Permalink
Merge pull request #3445 from t-fritsch/fix-scss-watch-tasks
Browse files Browse the repository at this point in the history
fix scss watch tasks broken on syntax error
  • Loading branch information
hakimel committed Aug 9, 2023
2 parents b8d97d2 + f2b0316 commit e1c1805
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions gulpfile.js
Expand Up @@ -167,8 +167,7 @@ function compileSass() {
file: transformedFile.path,
}, ( err, result ) => {
if( err ) {
console.log( vinylFile.path );
console.log( err.formatted );
callback(err);
}
else {
transformedFile.extname = '.css';
Expand Down

0 comments on commit e1c1805

Please sign in to comment.