@sap-ux/deploy-tooling 0.17.16 → 0.17.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli/archive.js +2 -2
- package/package.json +8 -8
package/dist/cli/archive.js
CHANGED
|
@@ -7,7 +7,7 @@ exports.getArchive = getArchive;
|
|
|
7
7
|
const axios_1 = __importDefault(require("axios"));
|
|
8
8
|
const node_fs_1 = require("node:fs");
|
|
9
9
|
const adm_zip_1 = __importDefault(require("adm-zip"));
|
|
10
|
-
const
|
|
10
|
+
const node_https_1 = require("node:https");
|
|
11
11
|
/**
|
|
12
12
|
* Get/read zip file from the given path.
|
|
13
13
|
*
|
|
@@ -41,7 +41,7 @@ async function fetchArchiveFromUrl(logger, url, rejectUnauthorized) {
|
|
|
41
41
|
try {
|
|
42
42
|
logger.info(`Fetching archive from ${url}.`);
|
|
43
43
|
const response = await axios_1.default.get(url, {
|
|
44
|
-
httpsAgent: new
|
|
44
|
+
httpsAgent: new node_https_1.Agent({ rejectUnauthorized }),
|
|
45
45
|
responseType: 'arraybuffer'
|
|
46
46
|
});
|
|
47
47
|
logger.info(`Archive fetched from ${url}.`);
|
package/package.json
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"bugs": {
|
|
10
10
|
"url": "https://github.com/SAP/open-ux-tools/issues?q=is%3Aopen+is%3Aissue+label%3Abug+label%3Adeploy-tooling"
|
|
11
11
|
},
|
|
12
|
-
"version": "0.17.
|
|
12
|
+
"version": "0.17.18",
|
|
13
13
|
"license": "Apache-2.0",
|
|
14
14
|
"author": "@SAP/ux-tools-team",
|
|
15
15
|
"main": "dist/index.js",
|
|
@@ -32,18 +32,18 @@
|
|
|
32
32
|
"prompts": "2.4.2",
|
|
33
33
|
"adm-zip": "0.5.10",
|
|
34
34
|
"chalk": "4.1.2",
|
|
35
|
-
"@sap-ux/axios-extension": "1.25.
|
|
35
|
+
"@sap-ux/axios-extension": "1.25.1",
|
|
36
36
|
"@sap-ux/btp-utils": "1.1.6",
|
|
37
|
-
"@sap-ux/inquirer-common": "0.10.
|
|
38
|
-
"@sap-ux/logger": "0.7.
|
|
39
|
-
"@sap-ux/system-access": "0.6.
|
|
40
|
-
"@sap-ux/ui5-config": "0.29.
|
|
41
|
-
"@sap-ux/project-input-validator": "0.6.
|
|
37
|
+
"@sap-ux/inquirer-common": "0.10.2",
|
|
38
|
+
"@sap-ux/logger": "0.7.3",
|
|
39
|
+
"@sap-ux/system-access": "0.6.35",
|
|
40
|
+
"@sap-ux/ui5-config": "0.29.12",
|
|
41
|
+
"@sap-ux/project-input-validator": "0.6.39"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@types/prompts": "2.4.4",
|
|
45
45
|
"@types/adm-zip": "0.5.5",
|
|
46
|
-
"@sap-ux/store": "1.4.
|
|
46
|
+
"@sap-ux/store": "1.4.1"
|
|
47
47
|
},
|
|
48
48
|
"engines": {
|
|
49
49
|
"node": ">=20.x"
|