@sap/ux-ui5-tooling 1.9.4 → 1.9.6
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/CHANGELOG.md +403 -0
- package/dist/cli/index.js +885 -496
- package/dist/middlewares/fiori-tools-appreload.js +51 -47
- package/dist/middlewares/fiori-tools-preview.js +897 -491
- package/dist/middlewares/fiori-tools-proxy.js +2503 -3814
- package/dist/tasks/cf-deploy/index.js +875 -483
- package/dist/tasks/deploy/index.js +879 -488
- package/dist/templates/variants-management/preview.html +1 -1
- package/package.json +14 -13
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
</script>
|
|
21
21
|
<script src="/test-resources/sap/ushell/bootstrap/sandbox.js" id="sap-ushell-bootstrap"></script>
|
|
22
22
|
<script id="sap-ui-bootstrap" src="/resources/sap-ui-core.js" <%- ui5Configuration %>></script><% if (reuseLibs) { %>
|
|
23
|
-
<script id="locate-reuse-libs" src="
|
|
23
|
+
<script id="locate-reuse-libs" src="../<%- reuseLibFolder %>/locate-reuse-libs.js" data-sap-ui-manifest-uri="../manifest.json">
|
|
24
24
|
</script><% } %><% if (rtaMode) { %>
|
|
25
25
|
<script>
|
|
26
26
|
sap.ui.getCore().attachInit(function() {
|
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.9.
|
|
4
|
+
"version": "1.9.6",
|
|
5
5
|
"description": "SAP Fiori Tools – UI5 Tooling",
|
|
6
6
|
"publisher": "SAPSE",
|
|
7
7
|
"license": "SEE LICENSE IN LICENSE",
|
|
@@ -50,16 +50,16 @@
|
|
|
50
50
|
"@sap-ux/backend-proxy-middleware": "0.6.45",
|
|
51
51
|
"@sap-ux/logger": "0.3.5",
|
|
52
52
|
"@sap-ux/store": "0.3.8",
|
|
53
|
-
"@sap-ux/ui5-config": "0.
|
|
54
|
-
"@sap-ux/ui5-proxy-middleware": "1.1.
|
|
55
|
-
"@sap/ux-app-templates": "1.9.
|
|
56
|
-
"@sap/ux-cds": "1.9.
|
|
57
|
-
"@sap/ux-common-utils": "1.9.
|
|
58
|
-
"@sap/ux-control-property-editor": "1.9.
|
|
59
|
-
"@sap/ux-odata-client": "1.9.
|
|
60
|
-
"@sap/ux-telemetry": "1.9.
|
|
61
|
-
"@sap/ux-ui5-info": "1.9.
|
|
62
|
-
"@sapux/project-spec": "1.9.
|
|
53
|
+
"@sap-ux/ui5-config": "0.16.6",
|
|
54
|
+
"@sap-ux/ui5-proxy-middleware": "1.1.25",
|
|
55
|
+
"@sap/ux-app-templates": "1.9.6",
|
|
56
|
+
"@sap/ux-cds": "1.9.6",
|
|
57
|
+
"@sap/ux-common-utils": "1.9.6",
|
|
58
|
+
"@sap/ux-control-property-editor": "1.9.6",
|
|
59
|
+
"@sap/ux-odata-client": "1.9.6",
|
|
60
|
+
"@sap/ux-telemetry": "1.9.6",
|
|
61
|
+
"@sap/ux-ui5-info": "1.9.6",
|
|
62
|
+
"@sapux/project-spec": "1.9.6",
|
|
63
63
|
"@types/marked": "4.0.1",
|
|
64
64
|
"@types/prompts": "2.0.14",
|
|
65
65
|
"@types/supertest": "2.0.12",
|
|
@@ -85,9 +85,9 @@
|
|
|
85
85
|
"request-promise": "4.2.5",
|
|
86
86
|
"serve-static": "1.14.1",
|
|
87
87
|
"supertest": "6.3.3",
|
|
88
|
-
"typescript": "4.9.
|
|
88
|
+
"typescript": "4.9.5",
|
|
89
89
|
"wait-for-expect": "3.0.2",
|
|
90
|
-
"yaml": "2.
|
|
90
|
+
"yaml": "2.2.2",
|
|
91
91
|
"yargs-parser": "20.2.6",
|
|
92
92
|
"yazl": "2.5.1"
|
|
93
93
|
},
|
|
@@ -99,6 +99,7 @@
|
|
|
99
99
|
"dist",
|
|
100
100
|
"doc",
|
|
101
101
|
"README.md",
|
|
102
|
+
"CHANGELOG.md",
|
|
102
103
|
"package.json",
|
|
103
104
|
"ui5.yaml",
|
|
104
105
|
"!*.tsbuildinfo",
|