cds-plugin-ui5 0.5.0 → 0.5.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/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.5.1](https://github.com/ui5-community/ui5-ecosystem-showcase/compare/cds-plugin-ui5@0.5.0...cds-plugin-ui5@0.5.1) (2023-09-02)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **cds-plugin-ui5:** only log modules config if defined ([#825](https://github.com/ui5-community/ui5-ecosystem-showcase/issues/825)) ([aa48da2](https://github.com/ui5-community/ui5-ecosystem-showcase/commit/aa48da23a4702bd5b6e48e0c61a2f891906a77ec))
12
+
13
+
14
+
15
+
16
+
6
17
  # [0.5.0](https://github.com/ui5-community/ui5-ecosystem-showcase/compare/cds-plugin-ui5@0.4.0...cds-plugin-ui5@0.5.0) (2023-09-02)
7
18
 
8
19
 
@@ -91,7 +91,9 @@ module.exports = async function findUI5Modules({ cwd, skipLocalApps, skipDeps })
91
91
  } catch (err) {
92
92
  modulesConfig = pkgJson.cds?.["cds-plugin-ui5"]?.modules;
93
93
  }
94
- log.debug(JSON.stringify(modulesConfig, undefined, 2));
94
+ if (modulesConfig) {
95
+ log.debug(JSON.stringify(modulesConfig, undefined, 2));
96
+ }
95
97
 
96
98
  // if apps are available, attach the middlewares of the UI5 apps
97
99
  // to the express of the CAP server via a express router
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cds-plugin-ui5",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "A CAP server cds-plugin to inject the middlewares of all related UI5 tooling based projects.",
5
5
  "author": "Peter Muessig",
6
6
  "license": "Apache-2.0",
@@ -24,5 +24,5 @@
24
24
  "@sap/cds": ">=6.8.2",
25
25
  "express": ">=4.18.2"
26
26
  },
27
- "gitHead": "9db24d0cd23d691749cd1419f24ec7f6cf7c1f5b"
27
+ "gitHead": "683ad154a6bb5edb4d9c32fae6af9304cc3f1fbb"
28
28
  }