UNPKG

generator-jdm

Version:

jd mobile project generator

14 lines (13 loc) 324 B
/** * clean floder * * @author willHu * @date 2015-09-07 * @contact email:huweiwei1@jd.com erp:huweiwei3 qq:226297845 */ module.exports = function (gulp, $, settings) { gulp.task('cleanDist', function() { return gulp.src(settings.distPath + '/', {read: false}) .pipe($.clean()); }); };