UNPKG

veezard

Version:

TECHB fork from veeva. Veeva CLM Generator & Workflow for building iRep Presentations.

17 lines (10 loc) 375 B
'use strict'; var 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']); }); };