ZIP compress files
$ npm install --save-dev gulp-zip
const gulp = require('gulp');
const zip = require('gulp-zip');
exports.default = () => (
gulp.src('src/*')
.pipe(zip('archive.zip'))
.pipe(gulp.dest('dist'))
);
Supports streaming mode.
Type: string
Type: object
Type: boolean
Default: true
Type: Date
Default: undefined
Overrides the modification timestamp for all files added to the archive.
Tip: Setting it to the same value across executions enables you to create stable archives that change only when the contents of their entries change, regardless of whether those entries were "touched" or regenerated.