@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.
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.12.
|
|
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
|
@@ -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((
|
|
156
|
-
const pkg = configUtils.packages.getPackage(
|
|
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);
|