Files @ bd7f9c5a1bd7
Branch filter:

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

bd7f9c5a1bd7 180 B application/javascript Show Source Show as Raw Download as Raw
Christopher Neugebauer
:wMerge remote-tracking branch 'origin/master' into prod
/**
 * Dependencies
 */
const del = require('del');

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