Merge pull request #12308 from itgenio/devel

[meteor-installer] fix: add a missing dep
This commit is contained in:
Denilson
2022-11-18 10:07:55 -04:00
committed by GitHub
2 changed files with 3 additions and 1 deletions

View File

@@ -1,5 +1,4 @@
const { DownloaderHelper } = require('node-downloader-helper');
const HttpsProxyAgent = require('https-proxy-agent');
const cliProgress = require('cli-progress');
const Seven = require('node-7z');
const path = require('path');
@@ -150,6 +149,8 @@ function generateProxyAgent() {
return undefined;
}
const HttpsProxyAgent = require('https-proxy-agent');
return new HttpsProxyAgent(proxyUrl);
}

View File

@@ -11,6 +11,7 @@
"dependencies": {
"7zip-bin": "^5.2.0",
"cli-progress": "^3.11.1",
"https-proxy-agent": "^5.0.1",
"node-7z": "^2.1.2",
"node-downloader-helper": "^1.0.19",
"rimraf": "^3.0.2",