Files @ 9ee51fff1740
Branch filter:

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

Joshua Simmons
fix nav spilling onto two lines issue
/**
 * Dependencies
 */
const del = require('del');

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