Files @ 2d7a71a4ef5d
Branch filter:

Location: symposion_app/gulp/tasks/clean.js

Scott Bragg
Latest migrations so we're all in sync not creating conflicts (#18)
/**
 * Dependencies
 */
const del = require('del');

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