Files @ c4c2379a5e80
Branch filter:

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

c4c2379a5e80 180 B application/javascript Show Source Show as Raw Download as Raw
Christopher Neugebauer
site.js is now not part of the pipeline
/**
 * Dependencies
 */
const del = require('del');

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