@eui/tools 6.12.35 → 6.12.36

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.
@@ -1 +1 @@
1
- 6.12.35
1
+ 6.12.36
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## 6.12.36 (2023-08-03)
2
+
3
+ ##### Bug Fixes
4
+
5
+ * **other:**
6
+ * route replacement of custom installation - EUI-7121 [EUI-7121](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7121) ([06f98a47](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/06f98a470edee4e2225e018f26cdcc5cf613c8e5))
7
+
8
+ * * *
9
+ * * *
1
10
  ## 6.12.35 (2023-08-03)
2
11
 
3
12
  ##### Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.12.35",
3
+ "version": "6.12.36",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -152,8 +152,8 @@ const getCustomRoutesDefs = (project) => {
152
152
  }
153
153
 
154
154
  // get routes from local packages to be installed
155
- customConfig.packages.forEach((pkgName) => {
156
- const pkg = configUtils.packages.getPackage(pkgName);
155
+ customConfig.packages.forEach((p) => {
156
+ const pkg = configUtils.packages.getPackage(p.name);
157
157
 
158
158
  tools.logInfo(`getting route def for : ${pkg.name} - ${pkg.npmPkg}`);
159
159
  const route = getRouteFromNpmPkg(pkg.npmPkg);