From f60495d7eb67ed3bd42a4982b6fbd32b47b2b012 Mon Sep 17 00:00:00 2001 From: Dan Mindru Date: Mon, 21 Sep 2020 22:31:48 +0200 Subject: [PATCH] Remove deps task completely --- gulpfile.js | 1 - tasks/check-deps.js | 10 ---------- 2 files changed, 11 deletions(-) delete mode 100644 tasks/check-deps.js 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;