UNPKG

webappengine

Version:

A web application server that can host multiple web apps running with Node.js.

21 lines (18 loc) 368 B
import gulp from 'gulp'; import del from 'del'; const list = [ 'dist/app', 'dist/web', 'src/web/**/*.css', 'src/web/**/*.css.map', 'src/web/**/*.js.map', // exclusion '!src/web/vendor/**' ]; export default (options) => { gulp.task('clean', (callback) => { del(list).then(() => { callback(); }); }); };