Better error handling when compiling the view

pull/263/head
Tobias Reich 10 years ago
parent b86108d2be
commit cbddff70e6

@ -35,6 +35,7 @@ gulp.task('view', function() {
gulp.src(paths.view)
.pipe(plugins.concat('view.js', {newLine: "\n"}))
.pipe(plugins.uglify())
.on('error', catchError)
.pipe(gulp.dest('../dist/'));
});

Loading…
Cancel
Save