@sap/ux-ui5-tooling 1.11.3 → 1.11.4

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 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.11.4] - 2023-11-01
7
+ ### Fixed
8
+ - Fixed an issue with using `fiori-tools-servestatic` middleware in an npm monorepository
9
+
6
10
  ## [1.11.3] - 2023-10-18
7
11
  ### Changed
8
12
  - Changed the minimum required [NodeJS](https://nodejs.org/en/download) version to 18.14.2 or higher
package/README.md CHANGED
@@ -340,9 +340,10 @@ server:
340
340
  configuration:
341
341
  paths:
342
342
  - path: /userapi/currentUser
343
- src: "Path/To/UserJson"
344
- index: "user.json"
343
+ src: "Path/To/UserJson/user.json"
344
+ index: false
345
345
  fallthrough: false
346
+ redirect: false
346
347
  ```
347
348
  whereas the `user.json` can look like this e.g.
348
349