@eui/tools 6.20.15 → 6.20.16

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.20.15
1
+ 6.20.16
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## 6.20.16 (2024-08-09)
2
+
3
+ ##### Bug Fixes
4
+
5
+ * **other:**
6
+ * wrong function call for remote build - EUI-9788 [EUI-9788](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-9788) ([bb373ace](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/bb373ace2bab1372e05fe89c8a2f49f152ef7c69))
7
+
8
+ * * *
9
+ * * *
1
10
  ## 6.20.15 (2024-08-09)
2
11
 
3
12
  ##### Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.20.15",
3
+ "version": "6.20.16",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -74,7 +74,7 @@ const cloneRemotesConfigStandalone = module.exports.cloneRemotesConfigStandalone
74
74
 
75
75
 
76
76
 
77
- module.exports.generateVirtualRemote = (remoteName, cloneRemotesConfig = true, standalone = false) => {
77
+ module.exports.generateVirtualRemote = (remoteName, cloneRemotesConfigFlag = true, standalone = false) => {
78
78
  tools.logTitle('Generating virtual remote');
79
79
 
80
80
  let remote, remotePath, remoteSrcPath, remoteSkeletonRootPath, remoteSkeletonPath;
@@ -87,7 +87,7 @@ module.exports.generateVirtualRemote = (remoteName, cloneRemotesConfig = true, s
87
87
  return Promise.resolve()
88
88
  // clone remotes config if first init
89
89
  .then(() => {
90
- if (cloneRemotesConfig) {
90
+ if (cloneRemotesConfigFlag) {
91
91
  if (standalone) {
92
92
  return cloneRemotesConfigStandalone();
93
93
  } else {