Files @ 2fbc85db8e1b
Branch filter:

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

Christopher Neugebauer
Increases margin on tight-headings so that there isn’t interaction between two adjacent H1/H2 blocks
/**
 * Dependencies
 */
const del = require('del');

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