Files @ 787663516eab
Branch filter:

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

787663516eab 180 B application/javascript Show Source Show as Raw Download as Raw
Christopher Neugebauer
more tweaks
/**
 * Dependencies
 */
const del = require('del');

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