Files @ cab9734d99d6
Branch filter:

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

Christopher Neugebauer
Merge pull request #83 from northbaypython/ticket-copy

add copy, minor edits, and stub out pages for for ticket sales
/**
 * Dependencies
 */
const del = require('del');

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