@eui/tools 5.3.82 → 5.3.83
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
|
-
5.3.
|
|
1
|
+
5.3.83
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 5.3.83 (2022-10-28)
|
|
2
|
+
|
|
3
|
+
##### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* routes replacements for v7 MWP - MWP-8915 [MWP-8915](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-8915) ([f705e15c](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/f705e15cc24e92a3905269cbc2ed8f327189f6ca))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
1
10
|
## 5.3.82 (2022-10-27)
|
|
2
11
|
|
|
3
12
|
##### Chores
|
package/package.json
CHANGED
|
@@ -255,7 +255,7 @@ const replaceRoutes = (project, envTarget, build, routesFileContent) => {
|
|
|
255
255
|
finalRouteDefs.forEach((route) => {
|
|
256
256
|
if (debug) tools.logInfo(`====> route : ${route.path}`);
|
|
257
257
|
|
|
258
|
-
if (project.build && (project.build.euiVersion === '7.x' || project.build.euiVersion === '10.x')) {
|
|
258
|
+
if (project.build && (!project.build.euiVersion || project.build.euiVersion === '7.x' || project.build.euiVersion === '10.x')) {
|
|
259
259
|
tools.logInfo('Legacy routes replacement for v7 and v10');
|
|
260
260
|
placeHolderContent += replaceRouteLegacy(route);
|
|
261
261
|
} else {
|