Skip to content

Instantly share code, notes, and snippets.

@ankitwww
Forked from glenasmith/gulpfile.js
Created October 31, 2015 17:04
Show Gist options
  • Save ankitwww/be041538eb2975ae9d4a to your computer and use it in GitHub Desktop.
Save ankitwww/be041538eb2975ae9d4a to your computer and use it in GitHub Desktop.
Zip up your webjob files into a deployable artifact
gulp.task('webjob', function() {
var webjob = "feedFetcher.zip";
del(webjob)
return gulp.src(['parsers/*.js', 'package.json', 'feedFetcher.js'], {base: "."})
.pipe(zip(webjob))
.pipe(gulp.dest('.'));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment