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