only delete dist folder contents when cleaned
This commit is contained in:
parent
f7fbdf2081
commit
f81e7b02dc
|
@ -291,7 +291,7 @@ gulp.task('browserify:cc', function () {
|
|||
});
|
||||
|
||||
gulp.task('dist:clean', function (cb) {
|
||||
return rimraf(paths.dist, cb);
|
||||
return rimraf(paths.dist + '**/*', cb);
|
||||
});
|
||||
|
||||
gulp.task('dist:move', function () {
|
||||
|
|
Loading…
Reference in New Issue