Files @ a4495754c89a
Branch filter:

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

Joshua Simmons
update file names for consistency (underscores rather than dashes)
/**
 * Dependencies
 */
const del = require('del');

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