diff --git a/gulpfile.js b/gulpfile.js index 68f13b6..846289f 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -23,7 +23,6 @@ require('./tasks/lint')(options); require('./tasks/postcss')(options); require('./tasks/sass')(options); require('./tasks/check-for-unused').checkForUnusedTask(options); -// require('./tasks/check-deps')(options); /* Runs the entire pipeline once. */ gulp.task( diff --git a/tasks/check-deps.js b/tasks/check-deps.js deleted file mode 100644 index d3417e1..0000000 --- a/tasks/check-deps.js +++ /dev/null @@ -1,10 +0,0 @@ -const gulp = require('gulp'); -const david = require('gulp-david'); - -function checkDepsTask() { - gulp.task('check-deps', function checkDeps() { - gulp.src('package.json').pipe(david()); - }); -} - -module.exports = checkDepsTask;