Files @ a00fc7845e3c
Branch filter:

Location: symposion_app/gulp/tasks/clean.js

Nick Seidenman (N6)
Added some css to make text visible on 404 and 404 pages.
Removed references to non-existent content—page-header-panel.html.
/**
 * Dependencies
 */
const del = require('del');

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