Files @ daac0fdd6043
Branch filter:

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

Brett Smith
templates: Render payment buttons at the bottom of invoices.

In addition to the top, to better follow modern convention.
/**
 * Dependencies
 */
const del = require('del');

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