@eui/tools 6.13.2 → 6.13.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/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.13.
|
|
1
|
+
6.13.3
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 6.13.3 (2023-10-20)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* added optional links generation on routes-replacement - EUI-7121 [EUI-7121](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7121) ([8533d607](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/8533d6070665f8c41acf94385bf71f4fdbb38921))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
1
10
|
## 6.13.2 (2023-10-19)
|
|
2
11
|
|
|
3
12
|
##### Chores
|
package/package.json
CHANGED
|
@@ -61,8 +61,10 @@ module.exports.buildRoutes = (project, envTarget, build = false) => {
|
|
|
61
61
|
// generate remotes-metadata files in Angular host
|
|
62
62
|
generateRemotesMetadata(project, routes);
|
|
63
63
|
|
|
64
|
-
|
|
65
|
-
|
|
64
|
+
if (project.externalRoutesSources && project.externalRoutesSources.generateLinks) {
|
|
65
|
+
// generate links for sidebar menu entries
|
|
66
|
+
generateLinks(project, routes, envTargetFinal);
|
|
67
|
+
}
|
|
66
68
|
})
|
|
67
69
|
|
|
68
70
|
.then(() => {
|