Skip to content

Commit 09d81ba

Browse files
pirxpilotunbornchikken
authored andcommittedMay 4, 2018
replace unzip with unzipper (#120)
unzipper is maintained fork of unzip installing unzipper does not produce scary npm warnings
1 parent 3456bb8 commit 09d81ba

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎lib/es6/downloader.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ let zlib = require("zlib");
88
let tar = require("tar");
99
let fs = Bluebird.promisifyAll(require("fs-extra"));
1010
let _ = require("lodash");
11-
let unzip = require("unzip");
11+
let unzip = require("unzipper");
1212
let CMLog = require("./cmLog");
1313

1414
function Downloader(options) {
@@ -104,4 +104,4 @@ Downloader.prototype.testSum = function(url, sum, options) {
104104
}
105105
};
106106

107-
module.exports = Downloader;
107+
module.exports = Downloader;

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"splitargs": "0",
4040
"tar": "^3.1.5",
4141
"traceur": "0.0.x",
42-
"unzip": "^0.1.11",
42+
"unzipper": "^0.8.13",
4343
"url-join": "0",
4444
"which": "^1.0.9",
4545
"yargs": "^3.6.0"

0 commit comments

Comments
 (0)
Please sign in to comment.