angular-cn/public/_example-zipper/test/gulpfile.js

27 lines
661 B
JavaScript
Raw Normal View History

var gulp = require('gulp');
var path = require('canonical-path');
var del = require('del');
var taskListing = require('gulp-task-listing');
var exampleZipper = require('../exampleZipper');
var _outputFolder = '_zip-output';
gulp.task('help', taskListing);
gulp.task('zipExamples', ['clean'], function() {
return exampleZipper.zipExamples("../../docs/_examples", _outputFolder);
});
gulp.task('clean', function (cb) {
var cleanPath = path.join(_outputFolder, '**/*.*');
del([ cleanPath, '!**/*.ovr.*'], function (err, paths) {
// console.log('Deleted files/folders:\n', paths.join('\n'));
cb();
});
});
gulp.task('default', taskListing);