@eui/tools 6.9.2 → 6.9.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.
@@ -1 +1 @@
1
- 6.9.2
1
+ 6.9.3
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## 6.9.3 (2023-03-15)
2
+
3
+ ##### Bug Fixes
4
+
5
+ * **other:**
6
+ * subRouteUrl issue not initiliazed - MWP-9204 [MWP-9204](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-9204) ([1668be90](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/1668be908030843b9724bee5ccd9aad5a009caec))
7
+
8
+ * * *
9
+ * * *
1
10
  ## 6.9.2 (2023-03-15)
2
11
 
3
12
  ##### Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.9.2",
3
+ "version": "6.9.3",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -258,6 +258,8 @@ module.exports.generateVirtualRemote = (remoteName, cloneRemote = true) => {
258
258
  tools.replaceInPath(remoteSrcPath, '@base.url@', remote.skeletonConfig.baseUrl);
259
259
  if (remote.skeletonConfig.subRouteUrl) {
260
260
  tools.replaceInPath(remoteSrcPath, '@sub.route.url@', remote.skeletonConfig.subRouteUrl);
261
+ } else {
262
+ tools.replaceInPath(remoteSrcPath, '@sub.route.url@', '');
261
263
  }
262
264
  tools.replaceInPath(remoteSrcPath, '@element.name@', remote.skeletonConfig.elementName);
263
265
  tools.replaceInPath(remoteSrcPath, '@store.name@', remote.skeletonConfig.storeName);