@eui/tools 6.13.2 → 6.13.4
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.4
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## 6.13.4 (2023-10-21)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* add config param for preventing esbuild output to alternate sub dist folder - EUI-7843 [EUI-7843](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7843) ([5e48dddf](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/5e48dddf65307a465cf844780d69f861ffd4bcb0))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
10
|
+
## 6.13.3 (2023-10-20)
|
|
11
|
+
|
|
12
|
+
##### Chores
|
|
13
|
+
|
|
14
|
+
* **other:**
|
|
15
|
+
* 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))
|
|
16
|
+
|
|
17
|
+
* * *
|
|
18
|
+
* * *
|
|
1
19
|
## 6.13.2 (2023-10-19)
|
|
2
20
|
|
|
3
21
|
##### Chores
|
package/package.json
CHANGED
|
@@ -253,6 +253,12 @@ module.exports.angular = (envTarget, isSnapshot, version, configEnvTargetIn) =>
|
|
|
253
253
|
}
|
|
254
254
|
})
|
|
255
255
|
|
|
256
|
+
.then(() => {
|
|
257
|
+
if (currentProject.build && currentProject.build.esbuild && currentProject.build.skipBrowserOutputPath) {
|
|
258
|
+
tools.copydir(path.join(currentProject.paths.rootPath, 'dist', 'browser'), path.join(currentProject.paths.rootPath, 'dist'));
|
|
259
|
+
tools.remove(path.join(currentProject.paths.rootPath, 'dist', 'browser'));
|
|
260
|
+
}
|
|
261
|
+
})
|
|
256
262
|
|
|
257
263
|
.catch((e) => {
|
|
258
264
|
throw e;
|
|
@@ -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(() => {
|