Skip to content
This repository has been archived by the owner on Jul 9, 2024. It is now read-only.

Commit

Permalink
fix(build): Prevent silent errors from LESS.
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Schranz committed Mar 26, 2015
1 parent c27cefd commit 1df4f1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ gulp.task('styles', function () {

return gulp.src('app/styles/app.less')
.pipe($.changed('styles', {extension: '.less'}))
.pipe($.less())
.pipe($.less().on('error', $.util.log))
.pipe($.autoprefixer({browsers: AUTOPREFIXER_BROWSERS}))
.pipe($.concat(f))
//.pipe($.if(production, $.csso()))
Expand Down

0 comments on commit 1df4f1e

Please sign in to comment.