Skip to content

Commit

Permalink
Make sure builds really fail if browserify build fails
Browse files Browse the repository at this point in the history
  • Loading branch information
rjmackay committed Jul 24, 2015
1 parent 02fb4be commit e9c3141
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 @@ -203,7 +203,7 @@ gulp.task('browserify', function () {
.bundle()
.on('error', function (err) {
errorHandler(err);
this.emit('end');
throw err;
})
.pipe(source('bundle.js'))
.pipe(buffer())
Expand Down

0 comments on commit e9c3141

Please sign in to comment.