Files @ 70b4375d7859
Branch filter:

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

Brett Smith
css: Quick hack to improve background on short pages.
/**
 * Dependencies
 */
const del = require('del');

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