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