Advertisement
Guest User

Untitled

a guest
Aug 24th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. gulp.task('zip', function () {
  2. gulp.src("packages/package-1/**")
  3. .pipe(zip("archive-1.zip"))
  4. .pipe(gulp.dest("build"));
  5. return gulp.src("packages/package-2
  6. .pipe(zip("archive-2.zip"))
  7. .pipe(gulp.dest("build"));
  8. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement