Files @ 79563669d1f9
Branch filter:

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

Brett Smith
templates.registrasion: Update for CopyleftConf 2019.
/**
 * Dependencies
 */
const del = require('del');

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