UNPKG

universal-web-template

Version:

An universal web proejct template - let you quickly set up a project using Handlebars, sass and ReactJS for front-end templating. It can be adopted with most modern CMS.

24 lines (17 loc) 423 B
/* jshint node: true */ /* cms:clean Task Clean all generated files from CMS directory */ 'use strict'; var del = require('del'); module.exports = function() { return del([ this.opts.config.integrate.styles, this.opts.config.integrate.scripts, this.opts.config.integrate.fonts, this.opts.config.integrate.images, this.opts.config.integrate.data, this.opts.config.theme + '/*.*' ]); };