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