用plumber
var plumber = require('gulp-plumber');
var notify = require('gulp-notify');
//js合并压缩
gulp.task('minifyjs', function() {
return gulp.src(jsSrcPath)
.pipe(plumber({ errorHandler: notify.onError('Error: <%= error.message %>') }))
.pipe(concat('app.js'))
.pipe(gulp.dest(distPath))
.pipe(rename({ suffix: '.min' }))
.pipe(uglify())
.pipe(gulp.dest(distPath));
});