@sap-ux/deploy-tooling 0.12.0 → 0.13.1
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/base/deploy.js +4 -2
- package/dist/base/validate.js +1 -1
- package/dist/ui5/archive.d.ts +1 -0
- package/dist/ui5/index.d.ts +1 -0
- package/package.json +4 -4
package/dist/base/deploy.js
CHANGED
|
@@ -245,8 +245,7 @@ function tryDeploy(provider, config, logger, archive) {
|
|
|
245
245
|
archive,
|
|
246
246
|
bsp: config.app,
|
|
247
247
|
testMode: config.test,
|
|
248
|
-
safeMode: config.safe
|
|
249
|
-
showAddInfo: yield (0, validate_1.showAdditionalInfoForOnPrem)(`${config.target.destination}`)
|
|
248
|
+
safeMode: config.safe
|
|
250
249
|
});
|
|
251
250
|
}
|
|
252
251
|
else {
|
|
@@ -257,6 +256,9 @@ function tryDeploy(provider, config, logger, archive) {
|
|
|
257
256
|
}
|
|
258
257
|
else {
|
|
259
258
|
logger.info('Deployment Successful.');
|
|
259
|
+
if (yield (0, validate_1.showAdditionalInfoForOnPrem)(`${config.target.destination}`)) {
|
|
260
|
+
logger.info('(Note: As the destination is configured using an On-Premise SAP Cloud Connector, you will need to replace the host in the URL above with the internal host)');
|
|
261
|
+
}
|
|
260
262
|
}
|
|
261
263
|
}
|
|
262
264
|
catch (error) {
|
package/dist/base/validate.js
CHANGED
|
@@ -20,7 +20,7 @@ var SummaryStatus;
|
|
|
20
20
|
SummaryStatus[SummaryStatus["Valid"] = 0] = "Valid";
|
|
21
21
|
SummaryStatus[SummaryStatus["Invalid"] = 1] = "Invalid";
|
|
22
22
|
SummaryStatus[SummaryStatus["Unknown"] = 2] = "Unknown";
|
|
23
|
-
})(SummaryStatus
|
|
23
|
+
})(SummaryStatus || (exports.SummaryStatus = SummaryStatus = {}));
|
|
24
24
|
exports.summaryMessage = {
|
|
25
25
|
allClientCheckPass: 'SAPUI5 ABAP Repository follows the rules of creating BSP application',
|
|
26
26
|
adtServiceUndefined: 'AdtService cannot be instantiated',
|
package/dist/ui5/archive.d.ts
CHANGED
package/dist/ui5/index.d.ts
CHANGED
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.
|
|
12
|
+
"version": "0.13.1",
|
|
13
13
|
"license": "Apache-2.0",
|
|
14
14
|
"author": "@SAP/ux-tools-team",
|
|
15
15
|
"main": "dist/index.js",
|
|
@@ -32,17 +32,17 @@
|
|
|
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.
|
|
35
|
+
"@sap-ux/axios-extension": "1.10.0",
|
|
36
36
|
"@sap-ux/btp-utils": "0.13.0",
|
|
37
37
|
"@sap-ux/logger": "0.4.0",
|
|
38
|
-
"@sap-ux/system-access": "0.3.
|
|
38
|
+
"@sap-ux/system-access": "0.3.10",
|
|
39
39
|
"@sap-ux/ui5-config": "0.21.0",
|
|
40
40
|
"@sap-ux/project-input-validator": "0.2.1"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@types/prompts": "2.4.4",
|
|
44
44
|
"@types/adm-zip": "0.5.3",
|
|
45
|
-
"@sap-ux/store": "0.4.
|
|
45
|
+
"@sap-ux/store": "0.4.1"
|
|
46
46
|
},
|
|
47
47
|
"ui5": {
|
|
48
48
|
"dependencies": []
|