Skip to content

Commit

Permalink
Remove gulp-plumber dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
yuanqing committed Jan 30, 2015
1 parent 44b18b9 commit 0b369b8
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
3 changes: 0 additions & 3 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ var del = require('del');
var gulp = require('gulp');
var browserify = require('gulp-browserify');
var jshint = require('gulp-jshint');
var plumber = require('gulp-plumber');
var rename = require('gulp-rename');
var uglify = require('gulp-uglify');
var karma = require('karma').server;
Expand All @@ -23,7 +22,6 @@ var defaultTasks = ['lint', 'test'];

gulp.task('lint', function() {
return gulp.src([].concat(__filename, paths.karmaConf, paths.src, paths.test))
.pipe(plumber())
.pipe(jshint())
.pipe(jshint.reporter('jshint-stylish'));
});
Expand All @@ -34,7 +32,6 @@ gulp.task('clean', function() { // synchronous

gulp.task('dist', ['clean'], function() {
return gulp.src(paths.src, { read: false })
.pipe(plumber())
.pipe(browserify({
debug: true, // generate sourcemaps
insertGlobals: false,
Expand Down
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
"gulp": "^3.8.10",
"gulp-browserify": "^0.5.1",
"gulp-jshint": "^1.9.0",
"gulp-plumber": "^0.6.6",
"gulp-rename": "^1.2.0",
"gulp-uglify": "^1.1.0",
"jasmine-jquery": "^2.0.6",
Expand Down

0 comments on commit 0b369b8

Please sign in to comment.