veeva
Version:
Veeva CLM Generator & Workflow for building iRep Presentations.
15 lines (10 loc) • 362 B
JavaScript
;
const del = require('del');
module.exports = function (gulp, options) {
gulp.task('clean', function () {
return del([options.paths.dist + '**/*', '!' + options.paths.dist + '/readme.md']);
});
gulp.task('clean:deploy', function () {
return del([options.paths.deploy + '**/*', '!' + options.paths.deploy + '/readme.md']);
});
};