Files @ 9c4663a5c0ed
Branch filter:

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

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

stub out static site pages
/**
 * Dependencies
 */
const del = require('del');

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