copyleftconf-website/gulp/tasks/cleanup.js

13 lines
175 B
JavaScript
Raw Normal View History

/**
* Dependencies
*/
const cleanup = require('gulp-cleanup');
/**
* Module body / Expose
*/
module.exports = config => {
config = config || {};
return cleanup();
};