diff --git a/gulp/tasks/clean.js b/gulp/tasks/clean.js deleted file mode 100644 index 910f2feae1a6aee29eb78fd2c37d6a3a8d75d5d0..0000000000000000000000000000000000000000 --- a/gulp/tasks/clean.js +++ /dev/null @@ -1,12 +0,0 @@ -/** - * Dependencies - */ -const del = require('del'); - -/** - * Module body / Expose - */ -module.exports = (entry, config) => { - config = config || {}; - return del(entry, config); -};