Files @ d0bbb39748cf
Branch filter:

Location: symposion_app/gulp/tasks/clean.js

Nick Seidenman (N6)
A few more tweaks to app.css, removing stuff that makes things look less like the wooden site.
/**
 * Dependencies
 */
const del = require('del');

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