Files @ f495422d05de
Branch filter:

Location: copyleftconf-website-fork/gulp/tasks/clean.js - annotation

f495422d05de 180 B application/javascript Show Source Show as Raw Download as Raw
Christopher Neugebauer
Merge pull request #15 from northbaypython/josh/copy

rejigger url scheme, organize static pages, and stub out last 2 pages needed for launch
/**
 * Dependencies
 */
const del = require('del');

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