@sap/ux-ui5-tooling 1.11.0 → 1.11.1
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 +14 -0
- package/dist/cli/index.js +22146 -7459
- package/dist/middlewares/fiori-tools-preview.js +6 -5
- package/dist/middlewares/fiori-tools-proxy.js +6 -5
- package/dist/tasks/cf-deploy/index.js +16 -15
- package/dist/tasks/deploy/index.js +22146 -7459
- package/dist/templates/control-property-editor/app.css +1 -1
- package/dist/templates/control-property-editor/app.js +54 -51
- package/package.json +10 -10
package/README.md
CHANGED
|
@@ -172,6 +172,19 @@ By the default the `fiori-tools-proxy` will read the proxy configuration from th
|
|
|
172
172
|
- path: /sap
|
|
173
173
|
url: https://my.backend.com:1234
|
|
174
174
|
|
|
175
|
+
```
|
|
176
|
+
#### [Ignoring Certificate Errors](#ignoring-certificate-errors)
|
|
177
|
+
By default, the `fiori-tools-proxy` will verify the SSL certificates and will throw an error if the validation fails. One can set the parameter `ignoreCertError: true` to ignore the certificate errors. Setting this parameter to `true` also allows the usage of self-signed certificates.
|
|
178
|
+
|
|
179
|
+
```
|
|
180
|
+
- name: fiori-tools-proxy
|
|
181
|
+
afterMiddleware: compression
|
|
182
|
+
configuration:
|
|
183
|
+
ignoreCertError: true
|
|
184
|
+
backend:
|
|
185
|
+
- path: /sap
|
|
186
|
+
url: https://my.backend.com:1234
|
|
187
|
+
|
|
175
188
|
```
|
|
176
189
|
#### [Providing Credentials](#providing-credentials)
|
|
177
190
|
Starting with version `1.6.7` it is now possible to provide the credentials for the backend service upfront in a `.env` file.
|
|
@@ -639,6 +652,7 @@ Deploys an application to an ABAP frontend server.
|
|
|
639
652
|
* `--description, -e` - The application description (default: description from `ui5-deploy.yaml`).
|
|
640
653
|
* `--yes, -y` - Deploy without asking for confirmation.
|
|
641
654
|
* `--failfast, -f` - Throw an error if something goes wrong and exit with a return code != 0.
|
|
655
|
+
* `--testMode, -tm` - Shows the results of CRUD operations that would be done in a real deployment to help you make an informed decision.
|
|
642
656
|
|
|
643
657
|
## [FAQ](#faq)
|
|
644
658
|
|