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