symposion_app/gulp/tasks/clean.js

13 lines
180 B
JavaScript
Raw Normal View History

/**
* Dependencies
*/
const del = require('del');
/**
* Module body / Expose
*/
module.exports = (entry, config) => {
config = config || {};
return del(entry, config);
};