@sap/ux-ui5-tooling 1.8.0 → 1.8.2
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 +1 -0
- package/dist/cli/index.js +1243 -273
- package/dist/middlewares/fiori-tools-appreload.js +2 -1
- package/dist/middlewares/fiori-tools-preview.js +830 -188
- package/dist/middlewares/fiori-tools-proxy.js +1458 -504
- package/dist/middlewares/fiori-tools-servestatic.js +2 -1
- package/dist/tasks/cf-deploy/index.js +517 -204
- package/dist/tasks/deploy/index.js +832 -190
- package/dist/templates/control-property-editor/app.css +1 -1
- package/dist/templates/control-property-editor/app.js +69 -69
- package/dist/templates/variants-management/WorkspaceConnector.js +22 -40
- package/package.json +11 -11
- package/CHANGELOG.md +0 -372
package/README.md
CHANGED
|
@@ -142,6 +142,7 @@ If you want the proxy to handle also WebSockets, then you need to set the option
|
|
|
142
142
|
url: https://my.backend.com:1234
|
|
143
143
|
ws: true
|
|
144
144
|
```
|
|
145
|
+
**Note: proxying WebSockets is currently not supported in SAP Business Application Studio.**
|
|
145
146
|
|
|
146
147
|
#### [Changing the path to which a request is proxied](#changing-the-path-to-which-a-request-is-proxied)
|
|
147
148
|
Let's that you want to configure the proxy to send requests from a certain path `/services/odata` to a destination with a specified entry path `/my/entry/path`. Then you need to do the following:
|