Files @ bd27519d320e
Branch filter:

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

Joshua Simmons
comment out guides that don't yet exist
/**
 * Dependencies
 */
const del = require('del');

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