@sap/ux-ui5-tooling 1.16.2 → 1.16.3
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/index.js
CHANGED
|
@@ -111887,7 +111887,7 @@ var require_destination3 = __commonJS({
|
|
|
111887
111887
|
}
|
|
111888
111888
|
async function listDestinations(options3) {
|
|
111889
111889
|
if ((0, btp_utils_2.isAppStudio)()) {
|
|
111890
|
-
return
|
|
111890
|
+
return (0, btp_utils_1.listDestinations)(options3);
|
|
111891
111891
|
} else {
|
|
111892
111892
|
return {};
|
|
111893
111893
|
}
|
|
@@ -174819,7 +174819,8 @@ var require_ui5_abap_repository_service2 = __commonJS({
|
|
|
174819
174819
|
exports2.abapUrlReplaceMap = /* @__PURE__ */ new Map([
|
|
174820
174820
|
[/\.abap\./, ".abap-web."],
|
|
174821
174821
|
[/-api\.s4hana\.ondemand\.com/, ".s4hana.ondemand.com"],
|
|
174822
|
-
[/-api\.saps4hanacloud\.cn/, ".saps4hanacloud.cn"]
|
|
174822
|
+
[/-api\.saps4hanacloud\.cn/, ".saps4hanacloud.cn"],
|
|
174823
|
+
[/-api\.lab\.s4hana\.cloud\.sap/, ".lab.s4hana.cloud.sap"]
|
|
174823
174824
|
]);
|
|
174824
174825
|
var xmlReplaceMap = {
|
|
174825
174826
|
"&": "&",
|
|
@@ -177067,11 +177068,11 @@ var require_abap_service_provider2 = __commonJS({
|
|
|
177067
177068
|
*
|
|
177068
177069
|
* @returns true if it an S/4HANA cloud system
|
|
177069
177070
|
*/
|
|
177070
|
-
async
|
|
177071
|
+
async isAbapCloud() {
|
|
177071
177072
|
if (this.atoSettings === void 0) {
|
|
177072
177073
|
await this.getAtoInfo();
|
|
177073
177074
|
}
|
|
177074
|
-
return this.atoSettings.tenantType === types_1.TenantType.Customer && this.atoSettings.operationsType === "C"
|
|
177075
|
+
return this.atoSettings.tenantType === types_1.TenantType.Customer && this.atoSettings.operationsType === "C";
|
|
177075
177076
|
}
|
|
177076
177077
|
/**
|
|
177077
177078
|
* Create or get an existing instance of AdtCatalogService for fetching ADT schema.
|
|
@@ -177100,8 +177101,8 @@ var require_abap_service_provider2 = __commonJS({
|
|
|
177100
177101
|
} else {
|
|
177101
177102
|
throw new Error("not implemented yet");
|
|
177102
177103
|
}
|
|
177103
|
-
Object.defineProperty(service, "
|
|
177104
|
-
get: this.
|
|
177104
|
+
Object.defineProperty(service, "isAbapCloud", {
|
|
177105
|
+
get: this.isAbapCloud.bind(this)
|
|
177105
177106
|
});
|
|
177106
177107
|
return service;
|
|
177107
177108
|
}
|
|
@@ -179737,7 +179738,8 @@ var require_ui5_abap_repository_service3 = __commonJS({
|
|
|
179737
179738
|
exports2.abapUrlReplaceMap = /* @__PURE__ */ new Map([
|
|
179738
179739
|
[/\.abap\./, ".abap-web."],
|
|
179739
179740
|
[/-api\.s4hana\.ondemand\.com/, ".s4hana.ondemand.com"],
|
|
179740
|
-
[/-api\.saps4hanacloud\.cn/, ".saps4hanacloud.cn"]
|
|
179741
|
+
[/-api\.saps4hanacloud\.cn/, ".saps4hanacloud.cn"],
|
|
179742
|
+
[/-api\.lab\.s4hana\.cloud\.sap/, ".lab.s4hana.cloud.sap"]
|
|
179741
179743
|
]);
|
|
179742
179744
|
var xmlReplaceMap = {
|
|
179743
179745
|
"&": "&",
|
|
@@ -181985,11 +181987,11 @@ var require_abap_service_provider3 = __commonJS({
|
|
|
181985
181987
|
*
|
|
181986
181988
|
* @returns true if it an S/4HANA cloud system
|
|
181987
181989
|
*/
|
|
181988
|
-
async
|
|
181990
|
+
async isAbapCloud() {
|
|
181989
181991
|
if (this.atoSettings === void 0) {
|
|
181990
181992
|
await this.getAtoInfo();
|
|
181991
181993
|
}
|
|
181992
|
-
return this.atoSettings.tenantType === types_1.TenantType.Customer && this.atoSettings.operationsType === "C"
|
|
181994
|
+
return this.atoSettings.tenantType === types_1.TenantType.Customer && this.atoSettings.operationsType === "C";
|
|
181993
181995
|
}
|
|
181994
181996
|
/**
|
|
181995
181997
|
* Create or get an existing instance of AdtCatalogService for fetching ADT schema.
|
|
@@ -182018,8 +182020,8 @@ var require_abap_service_provider3 = __commonJS({
|
|
|
182018
182020
|
} else {
|
|
182019
182021
|
throw new Error("not implemented yet");
|
|
182020
182022
|
}
|
|
182021
|
-
Object.defineProperty(service, "
|
|
182022
|
-
get: this.
|
|
182023
|
+
Object.defineProperty(service, "isAbapCloud", {
|
|
182024
|
+
get: this.isAbapCloud.bind(this)
|
|
182023
182025
|
});
|
|
182024
182026
|
return service;
|
|
182025
182027
|
}
|
|
@@ -192758,7 +192760,7 @@ var init_package = __esm({
|
|
|
192758
192760
|
package_default = {
|
|
192759
192761
|
name: "@sap/ux-ui5-tooling",
|
|
192760
192762
|
displayName: "SAP Fiori Tools \u2013 UI5 Tooling",
|
|
192761
|
-
version: "1.16.
|
|
192763
|
+
version: "1.16.3",
|
|
192762
192764
|
description: "SAP Fiori Tools \u2013 UI5 Tooling",
|
|
192763
192765
|
publisher: "SAPSE",
|
|
192764
192766
|
license: "SEE LICENSE IN LICENSE",
|
|
@@ -192791,7 +192793,7 @@ var init_package = __esm({
|
|
|
192791
192793
|
madge: "madge --warning --circular --extensions ts ./"
|
|
192792
192794
|
},
|
|
192793
192795
|
dependencies: {
|
|
192794
|
-
"@sap-ux/preview-middleware": "0.16.
|
|
192796
|
+
"@sap-ux/preview-middleware": "0.16.174",
|
|
192795
192797
|
"@ui5/fs": "3.0.4",
|
|
192796
192798
|
"connect-livereload": "0.6.1",
|
|
192797
192799
|
debug: "4.3.7",
|
|
@@ -192806,10 +192808,10 @@ var init_package = __esm({
|
|
|
192806
192808
|
},
|
|
192807
192809
|
devDependencies: {
|
|
192808
192810
|
"@playwright/test": "1.36.2",
|
|
192809
|
-
"@sap-ux/adp-tooling": "0.12.
|
|
192810
|
-
"@sap-ux/backend-proxy-middleware": "0.8.
|
|
192811
|
+
"@sap-ux/adp-tooling": "0.12.112",
|
|
192812
|
+
"@sap-ux/backend-proxy-middleware": "0.8.29",
|
|
192811
192813
|
"@sap-ux/btp-utils": "0.17.2",
|
|
192812
|
-
"@sap-ux/deploy-tooling": "0.15.
|
|
192814
|
+
"@sap-ux/deploy-tooling": "0.15.37",
|
|
192813
192815
|
"@sap-ux/feature-toggle": "0.2.3",
|
|
192814
192816
|
"@sap-ux/guided-answers-helper": "0.1.1",
|
|
192815
192817
|
"@sap-ux/logger": "0.6.0",
|
|
@@ -192821,9 +192823,9 @@ var init_package = __esm({
|
|
|
192821
192823
|
"@sap-ux/ui5-config": "0.26.0",
|
|
192822
192824
|
"@sap-ux/ui5-info": "0.8.3",
|
|
192823
192825
|
"@sap-ux/ui5-proxy-middleware": "1.4.13",
|
|
192824
|
-
"@sap/ux-app-templates": "1.16.
|
|
192825
|
-
"@sap/ux-odata-client": "1.16.
|
|
192826
|
-
"@sap/ux-ui5-info": "1.16.
|
|
192826
|
+
"@sap/ux-app-templates": "1.16.3",
|
|
192827
|
+
"@sap/ux-odata-client": "1.16.3",
|
|
192828
|
+
"@sap/ux-ui5-info": "1.16.3",
|
|
192827
192829
|
"@types/fs-extra": "11.0.4",
|
|
192828
192830
|
"@types/jest-dev-server": "5.0.3",
|
|
192829
192831
|
"@types/marked": "4.0.1",
|
|
@@ -94123,7 +94123,7 @@ var require_destination3 = __commonJS({
|
|
|
94123
94123
|
}
|
|
94124
94124
|
async function listDestinations(options2) {
|
|
94125
94125
|
if ((0, btp_utils_2.isAppStudio)()) {
|
|
94126
|
-
return
|
|
94126
|
+
return (0, btp_utils_1.listDestinations)(options2);
|
|
94127
94127
|
} else {
|
|
94128
94128
|
return {};
|
|
94129
94129
|
}
|
|
@@ -81629,7 +81629,7 @@ var require_destination3 = __commonJS({
|
|
|
81629
81629
|
}
|
|
81630
81630
|
async function listDestinations(options2) {
|
|
81631
81631
|
if ((0, btp_utils_2.isAppStudio)()) {
|
|
81632
|
-
return
|
|
81632
|
+
return (0, btp_utils_1.listDestinations)(options2);
|
|
81633
81633
|
} else {
|
|
81634
81634
|
return {};
|
|
81635
81635
|
}
|
|
@@ -153395,7 +153395,8 @@ var require_ui5_abap_repository_service2 = __commonJS({
|
|
|
153395
153395
|
exports2.abapUrlReplaceMap = /* @__PURE__ */ new Map([
|
|
153396
153396
|
[/\.abap\./, ".abap-web."],
|
|
153397
153397
|
[/-api\.s4hana\.ondemand\.com/, ".s4hana.ondemand.com"],
|
|
153398
|
-
[/-api\.saps4hanacloud\.cn/, ".saps4hanacloud.cn"]
|
|
153398
|
+
[/-api\.saps4hanacloud\.cn/, ".saps4hanacloud.cn"],
|
|
153399
|
+
[/-api\.lab\.s4hana\.cloud\.sap/, ".lab.s4hana.cloud.sap"]
|
|
153399
153400
|
]);
|
|
153400
153401
|
var xmlReplaceMap = {
|
|
153401
153402
|
"&": "&",
|
|
@@ -155643,11 +155644,11 @@ var require_abap_service_provider2 = __commonJS({
|
|
|
155643
155644
|
*
|
|
155644
155645
|
* @returns true if it an S/4HANA cloud system
|
|
155645
155646
|
*/
|
|
155646
|
-
async
|
|
155647
|
+
async isAbapCloud() {
|
|
155647
155648
|
if (this.atoSettings === void 0) {
|
|
155648
155649
|
await this.getAtoInfo();
|
|
155649
155650
|
}
|
|
155650
|
-
return this.atoSettings.tenantType === types_1.TenantType.Customer && this.atoSettings.operationsType === "C"
|
|
155651
|
+
return this.atoSettings.tenantType === types_1.TenantType.Customer && this.atoSettings.operationsType === "C";
|
|
155651
155652
|
}
|
|
155652
155653
|
/**
|
|
155653
155654
|
* Create or get an existing instance of AdtCatalogService for fetching ADT schema.
|
|
@@ -155676,8 +155677,8 @@ var require_abap_service_provider2 = __commonJS({
|
|
|
155676
155677
|
} else {
|
|
155677
155678
|
throw new Error("not implemented yet");
|
|
155678
155679
|
}
|
|
155679
|
-
Object.defineProperty(service, "
|
|
155680
|
-
get: this.
|
|
155680
|
+
Object.defineProperty(service, "isAbapCloud", {
|
|
155681
|
+
get: this.isAbapCloud.bind(this)
|
|
155681
155682
|
});
|
|
155682
155683
|
return service;
|
|
155683
155684
|
}
|
|
@@ -124434,7 +124434,7 @@ var require_destination4 = __commonJS({
|
|
|
124434
124434
|
}
|
|
124435
124435
|
async function listDestinations(options2) {
|
|
124436
124436
|
if ((0, btp_utils_2.isAppStudio)()) {
|
|
124437
|
-
return
|
|
124437
|
+
return (0, btp_utils_1.listDestinations)(options2);
|
|
124438
124438
|
} else {
|
|
124439
124439
|
return {};
|
|
124440
124440
|
}
|
|
@@ -147599,7 +147599,7 @@ var import_yaml2 = __toESM(require_dist5());
|
|
|
147599
147599
|
var package_default = {
|
|
147600
147600
|
name: "@sap/ux-ui5-tooling",
|
|
147601
147601
|
displayName: "SAP Fiori Tools \u2013 UI5 Tooling",
|
|
147602
|
-
version: "1.16.
|
|
147602
|
+
version: "1.16.3",
|
|
147603
147603
|
description: "SAP Fiori Tools \u2013 UI5 Tooling",
|
|
147604
147604
|
publisher: "SAPSE",
|
|
147605
147605
|
license: "SEE LICENSE IN LICENSE",
|
|
@@ -147632,7 +147632,7 @@ var package_default = {
|
|
|
147632
147632
|
madge: "madge --warning --circular --extensions ts ./"
|
|
147633
147633
|
},
|
|
147634
147634
|
dependencies: {
|
|
147635
|
-
"@sap-ux/preview-middleware": "0.16.
|
|
147635
|
+
"@sap-ux/preview-middleware": "0.16.174",
|
|
147636
147636
|
"@ui5/fs": "3.0.4",
|
|
147637
147637
|
"connect-livereload": "0.6.1",
|
|
147638
147638
|
debug: "4.3.7",
|
|
@@ -147647,10 +147647,10 @@ var package_default = {
|
|
|
147647
147647
|
},
|
|
147648
147648
|
devDependencies: {
|
|
147649
147649
|
"@playwright/test": "1.36.2",
|
|
147650
|
-
"@sap-ux/adp-tooling": "0.12.
|
|
147651
|
-
"@sap-ux/backend-proxy-middleware": "0.8.
|
|
147650
|
+
"@sap-ux/adp-tooling": "0.12.112",
|
|
147651
|
+
"@sap-ux/backend-proxy-middleware": "0.8.29",
|
|
147652
147652
|
"@sap-ux/btp-utils": "0.17.2",
|
|
147653
|
-
"@sap-ux/deploy-tooling": "0.15.
|
|
147653
|
+
"@sap-ux/deploy-tooling": "0.15.37",
|
|
147654
147654
|
"@sap-ux/feature-toggle": "0.2.3",
|
|
147655
147655
|
"@sap-ux/guided-answers-helper": "0.1.1",
|
|
147656
147656
|
"@sap-ux/logger": "0.6.0",
|
|
@@ -147662,9 +147662,9 @@ var package_default = {
|
|
|
147662
147662
|
"@sap-ux/ui5-config": "0.26.0",
|
|
147663
147663
|
"@sap-ux/ui5-info": "0.8.3",
|
|
147664
147664
|
"@sap-ux/ui5-proxy-middleware": "1.4.13",
|
|
147665
|
-
"@sap/ux-app-templates": "1.16.
|
|
147666
|
-
"@sap/ux-odata-client": "1.16.
|
|
147667
|
-
"@sap/ux-ui5-info": "1.16.
|
|
147665
|
+
"@sap/ux-app-templates": "1.16.3",
|
|
147666
|
+
"@sap/ux-odata-client": "1.16.3",
|
|
147667
|
+
"@sap/ux-ui5-info": "1.16.3",
|
|
147668
147668
|
"@types/fs-extra": "11.0.4",
|
|
147669
147669
|
"@types/jest-dev-server": "5.0.3",
|
|
147670
147670
|
"@types/marked": "4.0.1",
|
|
@@ -86479,7 +86479,7 @@ var require_destination3 = __commonJS({
|
|
|
86479
86479
|
}
|
|
86480
86480
|
async function listDestinations(options2) {
|
|
86481
86481
|
if ((0, btp_utils_2.isAppStudio)()) {
|
|
86482
|
-
return
|
|
86482
|
+
return (0, btp_utils_1.listDestinations)(options2);
|
|
86483
86483
|
} else {
|
|
86484
86484
|
return {};
|
|
86485
86485
|
}
|
|
@@ -152540,7 +152540,8 @@ var require_ui5_abap_repository_service2 = __commonJS({
|
|
|
152540
152540
|
exports2.abapUrlReplaceMap = /* @__PURE__ */ new Map([
|
|
152541
152541
|
[/\.abap\./, ".abap-web."],
|
|
152542
152542
|
[/-api\.s4hana\.ondemand\.com/, ".s4hana.ondemand.com"],
|
|
152543
|
-
[/-api\.saps4hanacloud\.cn/, ".saps4hanacloud.cn"]
|
|
152543
|
+
[/-api\.saps4hanacloud\.cn/, ".saps4hanacloud.cn"],
|
|
152544
|
+
[/-api\.lab\.s4hana\.cloud\.sap/, ".lab.s4hana.cloud.sap"]
|
|
152544
152545
|
]);
|
|
152545
152546
|
var xmlReplaceMap = {
|
|
152546
152547
|
"&": "&",
|
|
@@ -154788,11 +154789,11 @@ var require_abap_service_provider2 = __commonJS({
|
|
|
154788
154789
|
*
|
|
154789
154790
|
* @returns true if it an S/4HANA cloud system
|
|
154790
154791
|
*/
|
|
154791
|
-
async
|
|
154792
|
+
async isAbapCloud() {
|
|
154792
154793
|
if (this.atoSettings === void 0) {
|
|
154793
154794
|
await this.getAtoInfo();
|
|
154794
154795
|
}
|
|
154795
|
-
return this.atoSettings.tenantType === types_1.TenantType.Customer && this.atoSettings.operationsType === "C"
|
|
154796
|
+
return this.atoSettings.tenantType === types_1.TenantType.Customer && this.atoSettings.operationsType === "C";
|
|
154796
154797
|
}
|
|
154797
154798
|
/**
|
|
154798
154799
|
* Create or get an existing instance of AdtCatalogService for fetching ADT schema.
|
|
@@ -154821,8 +154822,8 @@ var require_abap_service_provider2 = __commonJS({
|
|
|
154821
154822
|
} else {
|
|
154822
154823
|
throw new Error("not implemented yet");
|
|
154823
154824
|
}
|
|
154824
|
-
Object.defineProperty(service, "
|
|
154825
|
-
get: this.
|
|
154825
|
+
Object.defineProperty(service, "isAbapCloud", {
|
|
154826
|
+
get: this.isAbapCloud.bind(this)
|
|
154826
154827
|
});
|
|
154827
154828
|
return service;
|
|
154828
154829
|
}
|
|
@@ -157458,7 +157459,8 @@ var require_ui5_abap_repository_service3 = __commonJS({
|
|
|
157458
157459
|
exports2.abapUrlReplaceMap = /* @__PURE__ */ new Map([
|
|
157459
157460
|
[/\.abap\./, ".abap-web."],
|
|
157460
157461
|
[/-api\.s4hana\.ondemand\.com/, ".s4hana.ondemand.com"],
|
|
157461
|
-
[/-api\.saps4hanacloud\.cn/, ".saps4hanacloud.cn"]
|
|
157462
|
+
[/-api\.saps4hanacloud\.cn/, ".saps4hanacloud.cn"],
|
|
157463
|
+
[/-api\.lab\.s4hana\.cloud\.sap/, ".lab.s4hana.cloud.sap"]
|
|
157462
157464
|
]);
|
|
157463
157465
|
var xmlReplaceMap = {
|
|
157464
157466
|
"&": "&",
|
|
@@ -159706,11 +159708,11 @@ var require_abap_service_provider3 = __commonJS({
|
|
|
159706
159708
|
*
|
|
159707
159709
|
* @returns true if it an S/4HANA cloud system
|
|
159708
159710
|
*/
|
|
159709
|
-
async
|
|
159711
|
+
async isAbapCloud() {
|
|
159710
159712
|
if (this.atoSettings === void 0) {
|
|
159711
159713
|
await this.getAtoInfo();
|
|
159712
159714
|
}
|
|
159713
|
-
return this.atoSettings.tenantType === types_1.TenantType.Customer && this.atoSettings.operationsType === "C"
|
|
159715
|
+
return this.atoSettings.tenantType === types_1.TenantType.Customer && this.atoSettings.operationsType === "C";
|
|
159714
159716
|
}
|
|
159715
159717
|
/**
|
|
159716
159718
|
* Create or get an existing instance of AdtCatalogService for fetching ADT schema.
|
|
@@ -159739,8 +159741,8 @@ var require_abap_service_provider3 = __commonJS({
|
|
|
159739
159741
|
} else {
|
|
159740
159742
|
throw new Error("not implemented yet");
|
|
159741
159743
|
}
|
|
159742
|
-
Object.defineProperty(service, "
|
|
159743
|
-
get: this.
|
|
159744
|
+
Object.defineProperty(service, "isAbapCloud", {
|
|
159745
|
+
get: this.isAbapCloud.bind(this)
|
|
159744
159746
|
});
|
|
159745
159747
|
return service;
|
|
159746
159748
|
}
|
|
@@ -173009,7 +173011,7 @@ async function updateTransportDeployConfig(transport, config, log4 = console) {
|
|
|
173009
173011
|
var package_default = {
|
|
173010
173012
|
name: "@sap/ux-ui5-tooling",
|
|
173011
173013
|
displayName: "SAP Fiori Tools \u2013 UI5 Tooling",
|
|
173012
|
-
version: "1.16.
|
|
173014
|
+
version: "1.16.3",
|
|
173013
173015
|
description: "SAP Fiori Tools \u2013 UI5 Tooling",
|
|
173014
173016
|
publisher: "SAPSE",
|
|
173015
173017
|
license: "SEE LICENSE IN LICENSE",
|
|
@@ -173042,7 +173044,7 @@ var package_default = {
|
|
|
173042
173044
|
madge: "madge --warning --circular --extensions ts ./"
|
|
173043
173045
|
},
|
|
173044
173046
|
dependencies: {
|
|
173045
|
-
"@sap-ux/preview-middleware": "0.16.
|
|
173047
|
+
"@sap-ux/preview-middleware": "0.16.174",
|
|
173046
173048
|
"@ui5/fs": "3.0.4",
|
|
173047
173049
|
"connect-livereload": "0.6.1",
|
|
173048
173050
|
debug: "4.3.7",
|
|
@@ -173057,10 +173059,10 @@ var package_default = {
|
|
|
173057
173059
|
},
|
|
173058
173060
|
devDependencies: {
|
|
173059
173061
|
"@playwright/test": "1.36.2",
|
|
173060
|
-
"@sap-ux/adp-tooling": "0.12.
|
|
173061
|
-
"@sap-ux/backend-proxy-middleware": "0.8.
|
|
173062
|
+
"@sap-ux/adp-tooling": "0.12.112",
|
|
173063
|
+
"@sap-ux/backend-proxy-middleware": "0.8.29",
|
|
173062
173064
|
"@sap-ux/btp-utils": "0.17.2",
|
|
173063
|
-
"@sap-ux/deploy-tooling": "0.15.
|
|
173065
|
+
"@sap-ux/deploy-tooling": "0.15.37",
|
|
173064
173066
|
"@sap-ux/feature-toggle": "0.2.3",
|
|
173065
173067
|
"@sap-ux/guided-answers-helper": "0.1.1",
|
|
173066
173068
|
"@sap-ux/logger": "0.6.0",
|
|
@@ -173072,9 +173074,9 @@ var package_default = {
|
|
|
173072
173074
|
"@sap-ux/ui5-config": "0.26.0",
|
|
173073
173075
|
"@sap-ux/ui5-info": "0.8.3",
|
|
173074
173076
|
"@sap-ux/ui5-proxy-middleware": "1.4.13",
|
|
173075
|
-
"@sap/ux-app-templates": "1.16.
|
|
173076
|
-
"@sap/ux-odata-client": "1.16.
|
|
173077
|
-
"@sap/ux-ui5-info": "1.16.
|
|
173077
|
+
"@sap/ux-app-templates": "1.16.3",
|
|
173078
|
+
"@sap/ux-odata-client": "1.16.3",
|
|
173079
|
+
"@sap/ux-ui5-info": "1.16.3",
|
|
173078
173080
|
"@types/fs-extra": "11.0.4",
|
|
173079
173081
|
"@types/jest-dev-server": "5.0.3",
|
|
173080
173082
|
"@types/marked": "4.0.1",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sap/ux-ui5-tooling",
|
|
3
3
|
"displayName": "SAP Fiori Tools – UI5 Tooling",
|
|
4
|
-
"version": "1.16.
|
|
4
|
+
"version": "1.16.3",
|
|
5
5
|
"description": "SAP Fiori Tools – UI5 Tooling",
|
|
6
6
|
"publisher": "SAPSE",
|
|
7
7
|
"license": "SEE LICENSE IN LICENSE",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"madge": "madge --warning --circular --extensions ts ./"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@sap-ux/preview-middleware": "0.16.
|
|
37
|
+
"@sap-ux/preview-middleware": "0.16.174",
|
|
38
38
|
"@ui5/fs": "3.0.4",
|
|
39
39
|
"connect-livereload": "0.6.1",
|
|
40
40
|
"debug": "4.3.7",
|
|
@@ -49,10 +49,10 @@
|
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"@playwright/test": "1.36.2",
|
|
52
|
-
"@sap-ux/adp-tooling": "0.12.
|
|
53
|
-
"@sap-ux/backend-proxy-middleware": "0.8.
|
|
52
|
+
"@sap-ux/adp-tooling": "0.12.112",
|
|
53
|
+
"@sap-ux/backend-proxy-middleware": "0.8.29",
|
|
54
54
|
"@sap-ux/btp-utils": "0.17.2",
|
|
55
|
-
"@sap-ux/deploy-tooling": "0.15.
|
|
55
|
+
"@sap-ux/deploy-tooling": "0.15.37",
|
|
56
56
|
"@sap-ux/feature-toggle": "0.2.3",
|
|
57
57
|
"@sap-ux/guided-answers-helper": "0.1.1",
|
|
58
58
|
"@sap-ux/logger": "0.6.0",
|
|
@@ -64,9 +64,9 @@
|
|
|
64
64
|
"@sap-ux/ui5-config": "0.26.0",
|
|
65
65
|
"@sap-ux/ui5-info": "0.8.3",
|
|
66
66
|
"@sap-ux/ui5-proxy-middleware": "1.4.13",
|
|
67
|
-
"@sap/ux-app-templates": "1.16.
|
|
68
|
-
"@sap/ux-odata-client": "1.16.
|
|
69
|
-
"@sap/ux-ui5-info": "1.16.
|
|
67
|
+
"@sap/ux-app-templates": "1.16.3",
|
|
68
|
+
"@sap/ux-odata-client": "1.16.3",
|
|
69
|
+
"@sap/ux-ui5-info": "1.16.3",
|
|
70
70
|
"@types/fs-extra": "11.0.4",
|
|
71
71
|
"@types/jest-dev-server": "5.0.3",
|
|
72
72
|
"@types/marked": "4.0.1",
|