Files @ fc842b7c308b
Branch filter:

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

Christopher Neugebauer
Wording on discounts on the form pages shows the reason for the discount.

Fixes #6.
/**
 * Dependencies
 */
const del = require('del');

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