Skip to content

Commit

Permalink
removes gulp-nsp due to outdated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
sjtw committed Jan 23, 2017
1 parent eb9ff77 commit 73c2107
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
10 changes: 5 additions & 5 deletions gulpfile.js
Expand Up @@ -3,7 +3,7 @@ var gulp = require('gulp');
var eslint = require('gulp-eslint');
var excludeGitignore = require('gulp-exclude-gitignore');
var istanbul = require('gulp-istanbul');
var nsp = require('gulp-nsp');
// var nsp = require('gulp-nsp');
var plumber = require('gulp-plumber');
var babel = require('gulp-babel');
var del = require('del');
Expand All @@ -21,9 +21,9 @@ require('babel-register');

var active = false;

gulp.task('nsp', function (cb) {
nsp({package: path.resolve('package.json')}, cb);
});
// gulp.task('nsp', function (cb) {
// nsp({package: path.resolve('package.json')}, cb);
// });

gulp.task('pre-coverage', function () {
return gulp.src(['src/**/*.js'])
Expand Down Expand Up @@ -127,7 +127,7 @@ gulp.task('watch__test', function() {
});

gulp.task('build', function () {
runSequence('set-active', 'clean', 'nsp', 'babel', 'set-inactive');
runSequence('set-active', 'clean', 'babel', 'set-inactive');
});


Expand Down
1 change: 0 additions & 1 deletion package.json
Expand Up @@ -39,7 +39,6 @@
"gulp-exclude-gitignore": "^1.0.0",
"gulp-istanbul": "^0.10.4",
"gulp-mocha": "^2.2.0",
"gulp-nsp": "^2.4.1",
"gulp-plumber": "^1.1.0",
"gulp-sourcemaps": "^1.6.0",
"isparta": "^4.0.0",
Expand Down

0 comments on commit 73c2107

Please sign in to comment.