cds-plugin-ui5 0.13.3 → 0.13.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 +11 -0
- package/lib/applyUI5Middleware.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [0.13.4](https://github.com/ui5-community/ui5-ecosystem-showcase/compare/cds-plugin-ui5@0.13.3...cds-plugin-ui5@0.13.4) (2025-07-31)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **cds-plugin-ui5:** fixes minor condition error for custom webapp path determination ([#1245](https://github.com/ui5-community/ui5-ecosystem-showcase/issues/1245)) ([c3b7355](https://github.com/ui5-community/ui5-ecosystem-showcase/commit/c3b735588bd51a4632e4e94893b3205ca0f6aff4))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [0.13.3](https://github.com/ui5-community/ui5-ecosystem-showcase/compare/cds-plugin-ui5@0.13.2...cds-plugin-ui5@0.13.3) (2025-07-29)
|
|
7
18
|
|
|
8
19
|
|
|
@@ -185,7 +185,7 @@ module.exports = async function applyUI5Middleware(router, options) {
|
|
|
185
185
|
};
|
|
186
186
|
|
|
187
187
|
const determineWebappPath = (ui5ConfigPath) => {
|
|
188
|
-
if (ui5ConfigPath) {
|
|
188
|
+
if (!ui5ConfigPath) {
|
|
189
189
|
log.warn("Path to config file could not be determined. Using default webapp path to lookup HTML pages");
|
|
190
190
|
return "webapp";
|
|
191
191
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cds-plugin-ui5",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.4",
|
|
4
4
|
"description": "A CDS server plugin to inject the middlewares of all related UI5 tooling based projects.",
|
|
5
5
|
"author": "Peter Muessig",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -27,5 +27,5 @@
|
|
|
27
27
|
"@sap/cds": ">=6.8.2",
|
|
28
28
|
"express": ">=4.18.2"
|
|
29
29
|
},
|
|
30
|
-
"gitHead": "
|
|
30
|
+
"gitHead": "5859e2f476004c8a9a7e3320f8948d5605986982"
|
|
31
31
|
}
|