Files @ 348a397abab1
Branch filter:

Location: CopyleftConf/copyleftconf-website/gulp/tasks/clean.js

Sam Kitajima-Kimbrel
First stab at a "pitch your boss" page.

No idea if this is the direction we want to go in but have a look.
/**
 * Dependencies
 */
const del = require('del');

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