dev-approuter 0.2.1 → 0.2.3

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,25 @@
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.2.3](https://github.com/ui5-community/ui5-ecosystem-showcase/compare/dev-approuter@0.2.2...dev-approuter@0.2.3) (2023-10-14)
7
+
8
+ **Note:** Version bump only for package dev-approuter
9
+
10
+
11
+
12
+
13
+
14
+ ## [0.2.2](https://github.com/ui5-community/ui5-ecosystem-showcase/compare/dev-approuter@0.2.1...dev-approuter@0.2.2) (2023-10-04)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * **dev-approuter:** fix detection of cds local apps ([#873](https://github.com/ui5-community/ui5-ecosystem-showcase/issues/873)) ([ad56ba8](https://github.com/ui5-community/ui5-ecosystem-showcase/commit/ad56ba888d8fb3db1005e1cedc7dbd3b9bf625b5))
20
+
21
+
22
+
23
+
24
+
6
25
  ## [0.2.1](https://github.com/ui5-community/ui5-ecosystem-showcase/compare/dev-approuter@0.2.0...dev-approuter@0.2.1) (2023-10-04)
7
26
 
8
27
 
@@ -66,7 +66,7 @@ class DevApprouter {
66
66
  ui5ModulesConfig = Object.assign(ui5ModulesConfig, approuterUI5ModulesConfig);
67
67
  //const ui5Modules = [...(await findUI5Modules({ cwd, skipLocalApps: true }))];
68
68
  if (cdsServerConfig) {
69
- const cdsUI5Modules = await findUI5Modules({ cwd: cdsServerConfig.modulePath, skipLocalApps: true });
69
+ const cdsUI5Modules = await findUI5Modules({ cwd: cdsServerConfig.modulePath, skipDeps: true });
70
70
  ui5Modules.push(...(cdsUI5Modules || []));
71
71
  const { config: cdsUI5ModulesConfig } = cdsUI5Modules;
72
72
  ui5ModulesConfig = Object.assign(ui5ModulesConfig, cdsUI5ModulesConfig);
package/package.json CHANGED
@@ -1,9 +1,10 @@
1
1
  {
2
2
  "name": "dev-approuter",
3
- "version": "0.2.1",
3
+ "version": "0.2.3",
4
4
  "description": "A dev time wrapper for the SAP Application Router that can serve UI5 and CDS modules added as dependencies.",
5
5
  "author": "Nico Schoenteich <nicolai.schoenteich@sap.com> (https://github.com/nicoschoenteich)",
6
6
  "license": "Apache-2.0",
7
+ "homepage": "https://github.com/ui5-community/ui5-ecosystem-showcase/tree/main/packages/dev-approuter#readme",
7
8
  "repository": {
8
9
  "type": "git",
9
10
  "url": "https://github.com/ui5-community/ui5-ecosystem-showcase.git",
@@ -12,9 +13,9 @@
12
13
  "dependencies": {
13
14
  "@sap/approuter": ">=14.3.2",
14
15
  "@sap/xsenv": "4.0.0",
15
- "cds-plugin-ui5": "^0.6.13",
16
+ "cds-plugin-ui5": "^0.6.14",
16
17
  "express": "^4.18.2",
17
- "ui5-middleware-cap": "^3.2.1"
18
+ "ui5-middleware-cap": "^3.2.2"
18
19
  },
19
- "gitHead": "4c60ccc427b97468dbc6aee0d4c909d42c49e926"
20
+ "gitHead": "cd445f6c7593cc477e2cd744f475f8f233b34cd5"
20
21
  }