@sap/ux-ui5-tooling 1.6.3 → 1.6.4
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/README.md +2 -2
- package/dist/cli/index.js +141 -136
- package/dist/middlewares/fiori-tools-preview.js +141 -136
- package/dist/middlewares/fiori-tools-proxy.js +141 -136
- package/dist/tasks/cf-deploy/index.js +141 -136
- package/dist/tasks/deploy/index.js +141 -136
- package/dist/templates/control-property-editor/app.css +1 -1
- package/dist/templates/control-property-editor/app.js +45 -45
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -173,7 +173,7 @@ By the default the `fiori-tools-proxy` will read the proxy configuration from th
|
|
|
173
173
|
|
|
174
174
|
#### [UI5](#ui5)
|
|
175
175
|
|
|
176
|
-
By using the proxy configuration one can also change the SAPUI5 version, which is used to preview the application.
|
|
176
|
+
By using the proxy configuration one can also change the SAPUI5 version, which is used to preview the application. By using the `version` parameter one can change the SAPUI5 version as follows:
|
|
177
177
|
|
|
178
178
|
```
|
|
179
179
|
- name: fiori-tools-proxy
|
|
@@ -187,7 +187,7 @@ By using the proxy configuration one can also change the SAPUI5 version, which i
|
|
|
187
187
|
version: 1.78.0
|
|
188
188
|
```
|
|
189
189
|
|
|
190
|
-
|
|
190
|
+
Starting with `ux-ui5-tooling` version `1.4.7`, if the `version` property is not set in the `ui5.yaml`, then the `minUI5Version` from `manifest.json` will be used for the application preview. If the `version` property is set, but it is empty, then the `latest` SAPUI5 version from https://ui5.sap.com will be used for the application preview. For any other case the value of the `version` property will be used for the application preview.
|
|
191
191
|
|
|
192
192
|
**Note:** all UI5 requests are routed through the proxy. Sometimes this can cause performance issues. If you don't want route the UI5 requests through the proxy, then you can set parameter `directLoad: true`. This will inject the UI5 url in the HTML file of the application and thus the UI5 libs will be loaded directly.
|
|
193
193
|
|