forked from sindresorhus/gulp-zip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
75 lines (62 loc) · 1.53 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
'use strict';
const path = require('path');
const Vinyl = require('vinyl');
const PluginError = require('plugin-error');
const through = require('through2');
const Yazl = require('yazl');
const getStream = require('get-stream');
module.exports = (filename, options) => {
if (!filename) {
throw new PluginError('gulp-zip', '`filename` required');
}
options = Object.assign({
compress: true
}, options);
let firstFile;
const zip = new Yazl.ZipFile();
return through.obj((file, enc, cb) => {
if (!firstFile) {
firstFile = file;
}
// Because Windows...
const pathname = file.relative.replace(/\\/g, '/');
if (!pathname) {
cb();
return;
}
if (file.isNull() && file.stat && file.stat.isDirectory && file.stat.isDirectory()) {
zip.addEmptyDirectory(pathname, {
mtime: options.modifiedTime || file.stat.mtime || new Date(),
mode: file.stat.mode
});
} else {
const stat = {
compress: options.compress,
mtime: options.modifiedTime || (file.stat ? file.stat.mtime : new Date()),
mode: file.stat ? file.stat.mode : null
};
if (file.isStream()) {
zip.addReadStream(file.contents, pathname, stat);
}
if (file.isBuffer()) {
zip.addBuffer(file.contents, pathname, stat);
}
}
cb();
}, function (cb) {
if (!firstFile) {
cb();
return;
}
getStream.buffer(zip.outputStream).then(data => {
this.push(new Vinyl({
cwd: firstFile.cwd,
base: firstFile.base,
path: path.join(firstFile.base, filename),
contents: data
}));
cb();
});
zip.end();
});
};