@eui/tools 6.12.12 → 6.12.13

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.12
1
+ 6.12.13
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## 6.12.13 (2023-06-23)
2
+
3
+ ##### Chores
4
+
5
+ * **other:**
6
+ * adapted route replacement for workspace integration - MWP-9751 [MWP-9751](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-9751) ([a5f0985f](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/a5f0985f0b63a27e9e4de73b1d0699d168847964))
7
+
8
+ * * *
9
+ * * *
1
10
  ## 6.12.12 (2023-06-22)
2
11
 
3
12
  ##### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.12.12",
3
+ "version": "6.12.13",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -341,7 +341,8 @@ const processRoutesConfig = (project, envTarget, build, routesFile, routesFileCo
341
341
  // processing each routes found in the routeDefs entry
342
342
 
343
343
  mergedRoutes.forEach((route) => {
344
- tools.logInfo(`Processing route : ${route.path}`);
344
+ tools.logInfo(`Processing route : `);
345
+ console.log(route);
345
346
 
346
347
  const defRoute = routeDefsBaseJSON.filter((r) => r.path === route.path)[0];
347
348
  if (!defRoute) {
@@ -482,6 +483,9 @@ const processRoutesConfig = (project, envTarget, build, routesFile, routesFileCo
482
483
  if (link.optional) {
483
484
  routeDef.optional = link.optional;
484
485
  }
486
+ if (link.workspace) {
487
+ routeDef.workspace = link.workspace;
488
+ }
485
489
  return;
486
490
  }
487
491
  });