@sap/ux-ui5-tooling 1.13.5 → 1.14.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 +6 -1
- package/dist/cli/index.js +94915 -94360
- package/dist/middlewares/fiori-tools-appreload.js +59 -1055
- package/dist/middlewares/fiori-tools-preview.js +100117 -91647
- package/dist/middlewares/fiori-tools-proxy.js +75685 -76167
- package/dist/middlewares/fiori-tools-servestatic.js +59 -1055
- package/dist/tasks/cf-deploy/index.js +65413 -56949
- package/dist/tasks/deploy/index.js +69167 -68615
- package/package.json +16 -15
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@ 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.13.6] - 2024-05-29
|
|
7
|
+
### Fixed
|
|
8
|
+
- Fixed an issue with the preview of adaptation projects using reuse libraries
|
|
9
|
+
|
|
6
10
|
## [1.13.3] - 2024-04-17
|
|
7
11
|
### Fixed
|
|
8
12
|
- Fixed an issue with preview not working with latest `node.js` versions on Windows-based systems ("Command run failed with error : spawn EINVAL")
|
package/README.md
CHANGED
|
@@ -412,7 +412,7 @@ server:
|
|
|
412
412
|
### Configuration options
|
|
413
413
|
- **`component`** - application component of the SAP Fiori application (value is prefilled when the application is generated with https://www.npmjs.com/package/@sap/generator-fiori).
|
|
414
414
|
- **`ui5Theme`** - SAP Fiori theme of the application (value is prefilled when the application is generated with https://www.npmjs.com/package/@sap/generator-fiori).
|
|
415
|
-
- **`libs`** - a
|
|
415
|
+
- **`libs`** - boolean: optional flag to add a generic script that fetches the paths of the libraries used, which are not available in UI5. To disable it, set it to `false`. If the flag is not set, the project will be checked for a `load-reuse-libs` script and if it is available, the libraries will also be fetched.
|
|
416
416
|
|
|
417
417
|
## [**Tasks**](#tasks)
|
|
418
418
|
|
|
@@ -530,6 +530,10 @@ For local usage, we recommend to not use the credentials object at all. As resul
|
|
|
530
530
|
- `<string>` (required)
|
|
531
531
|
- Password required to authenticate the previously configured user. IMPORTANT: while technically possible to add the password to your config, we strongly DISCOURAGE that but recommend instead the use of environment variables.
|
|
532
532
|
|
|
533
|
+
#### authenticationType
|
|
534
|
+
- `<string>` (optional)
|
|
535
|
+
- Authentication type for the app (e.g. 'basic', 'reentranceTicket'). IMPORTANT: It is required for authentication with reentrance tickets.
|
|
536
|
+
|
|
533
537
|
### app
|
|
534
538
|
|
|
535
539
|
The app object describes the backend object that is created/updated as result of the deployment.
|
|
@@ -648,6 +652,7 @@ Deploys an application to an ABAP frontend server.
|
|
|
648
652
|
* `--url, -u` - The url of the service endpoint at the ABAP system (default: url from `ui5-deploy.yaml`).
|
|
649
653
|
* `--username` - Name of environment variable containing a username to authenticate (default: username from `ui5-deploy.yaml`).
|
|
650
654
|
* `--password` - Name of environment variable containing a password to authenticate (default: password from `ui5-deploy.yaml`).
|
|
655
|
+
* `--authenticationType` - Authentication type for the app (e.g. 'basic', 'reentranceTicket'). Required for 'reentranceTicket'.
|
|
651
656
|
* `--client, -l` - The ABAP client (default: client from `ui5-deploy.yaml`).
|
|
652
657
|
* `--transport, -t` - The id of the transport request (default: transport from `ui5-deploy.yaml`).
|
|
653
658
|
* `--name, -n` - The application name (default: name from `ui5-deploy.yaml`).
|