@sap/ux-ui5-tooling 1.10.3 → 1.10.5
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 +5 -0
- package/README.md +2 -0
- package/dist/cli/index.js +3253 -1686
- package/dist/markdowns/deploy/deploy.en.md +4 -2
- package/dist/markdowns/undeploy/undeploy.en.md +3 -1
- package/dist/middlewares/fiori-tools-appreload.js +12 -828
- package/dist/middlewares/fiori-tools-preview.js +1932 -1298
- package/dist/middlewares/fiori-tools-proxy.js +25850 -24328
- package/dist/middlewares/fiori-tools-servestatic.js +5 -4
- package/dist/tasks/cf-deploy/index.js +1144 -1053
- package/dist/tasks/deploy/index.js +3294 -1732
- package/package.json +11 -10
- package/ui5.yaml +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,11 @@ 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
5
|
|
|
6
|
+
## [1.10.5] - 2023-08-09
|
|
7
|
+
### Changed
|
|
8
|
+
- The `fiori-tools-preview` is now using the [@sap-ux/preview-middleware](https://www.npmjs.com/package/@sap-ux/preview-middleware) for the support of developer variant creation
|
|
9
|
+
- The `@sap/ux-ui5-tooling` middlewares now require the `@ui5/cli` version >= 3 to be installed in the project.
|
|
10
|
+
|
|
6
11
|
## [1.9.5] - 2023-04-19
|
|
7
12
|
### Fixed
|
|
8
13
|
- Fixed an issue with not finding the preview helper library `locate-reuse-libs.js` in older apps after its default location was changed
|
package/README.md
CHANGED
|
@@ -3,6 +3,8 @@
|
|
|
3
3
|
The SAP Fiori Tools - UI5 Tooling contains a selection of custom [middlewares](https://sap.github.io/ui5-tooling/pages/extensibility/CustomServerMiddleware/) that can be used with the command `ui5 serve` as well as custom [tasks](https://sap.github.io/ui5-tooling/pages/extensibility/CustomTasks/) that can be used with the command `ui5 build`.
|
|
4
4
|
Furthermore, the module expose the cli `fiori` offering e.g. the [`fiori run`](#run) command is a wrapper of the `ui5 serve` commands and provides some additional parameters as well as `fiori add deploy-config` and `fiori add flp-config` to extend an existing project.
|
|
5
5
|
|
|
6
|
+
**IMPORTANT**: Starting with version `1.10.5`, the minimum required `@ui5/cli` version is >= 3! For more information about migration to version 3 of the `@ui5/cli`, see [here](https://sap.github.io/ui5-tooling/v3/updates/migrate-v3/).
|
|
7
|
+
|
|
6
8
|
## [**Middlewares**](#middlewares)
|
|
7
9
|
|
|
8
10
|
SAP Fiori tools use the capabilities of custom middlewares to start and preview SAP Fiori elements or SAPUI5 freestyle applications, e.g. to enable auto refresh, to switch the version of SAPUI5 sources or to serve static resources. Starting with version `1.3.0` the behaviour of the preview of the SAP Fiori applications has changed. Now the persistent iAppState is ignored in order to have the source code changes always apply when application is refreshed. If you want to enable the iAppState then you need to add the URL parameter `fiori-tools-iapp-state=true` to the browser URL, e.g. `http://localhost:8080/test/flpSandbox.html?fiori-tools-iapp-state=true#masterDetail-display`.
|