@sap/ux-ui5-tooling 1.5.5 → 1.6.0
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 +4 -0
- package/README.md +15 -0
- package/dist/cli/index.js +278 -289
- package/dist/middlewares/fiori-tools-appreload.js +16 -42
- package/dist/middlewares/fiori-tools-preview.js +275 -288
- package/dist/middlewares/fiori-tools-proxy.js +20281 -7649
- package/dist/middlewares/fiori-tools-servestatic.js +16 -42
- package/dist/tasks/cf-deploy/index.js +272 -285
- package/dist/tasks/deploy/index.js +278 -289
- package/dist/templates/control-property-editor/app.js +1 -1
- package/dist/templates/control-property-editor/ui5-adaptation.js +1 -1
- package/dist/templates/control-property-editor/vendor.js +1 -1
- package/package.json +15 -12
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
All notable changes to this project are documented in this file.
|
|
3
3
|
|
|
4
4
|
This project adheres to [Semantic Versioning](http://semver.org/) and the changelog is formatted based on [Keep a Changelog](http://keepachangelog.com/).
|
|
5
|
+
## [1.6.0] - 2022-05-05
|
|
6
|
+
### Changed
|
|
7
|
+
- The `fiori-tools-proxy` is now using the [@sap-ux/ui5-proxy-middleware](https://www.npmjs.com/package/@sap-ux/ui5-proxy-middleware) for proxying the UI5 sources
|
|
8
|
+
|
|
5
9
|
## [1.5.5] - 2022-04-21
|
|
6
10
|
### Fixed
|
|
7
11
|
- Fixed an issue with the `fiori-tools-servestatic` middleware not serving files starting with a dot
|
package/README.md
CHANGED
|
@@ -204,6 +204,21 @@ By using the `version` parameter one can choose the SAPUI5 version which will us
|
|
|
204
204
|
directLoad: true
|
|
205
205
|
```
|
|
206
206
|
|
|
207
|
+
Starting with version `1.6.0` one can use the following syntax for proxying different UI5 requests to different URLs, e.g.
|
|
208
|
+
|
|
209
|
+
```
|
|
210
|
+
- name: fiori-tools-proxy
|
|
211
|
+
afterMiddleware: compression
|
|
212
|
+
configuration:
|
|
213
|
+
ui5:
|
|
214
|
+
paths:
|
|
215
|
+
- path: /resources
|
|
216
|
+
url: https://ui5.sap.com
|
|
217
|
+
- path: /test-resources
|
|
218
|
+
src: https://sapui5.hana.ondemand.com
|
|
219
|
+
version: '1.100.1'
|
|
220
|
+
```
|
|
221
|
+
|
|
207
222
|
### [**3. Serve Static**](#3-serve-static)
|
|
208
223
|
|
|
209
224
|
The serve static middleware provides the capability to serve any static resources locally from your machine. E.g. you can serve SAPUI5 locally or any other resources.
|