@eui/tools 6.20.14 → 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.14
1
+ 6.20.16
package/CHANGELOG.md CHANGED
@@ -1,3 +1,21 @@
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
+ * * *
10
+ ## 6.20.15 (2024-08-09)
11
+
12
+ ##### Chores
13
+
14
+ * **other:**
15
+ * remote standalone install registry fetch - EUI-9788 [EUI-9788](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-9788) ([f40b38eb](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/f40b38eb0be62d724d5f68eb071615741449cc03))
16
+
17
+ * * *
18
+ * * *
1
19
  ## 6.20.14 (2024-08-09)
2
20
 
3
21
  ##### Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.20.14",
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 {
@@ -116,7 +116,12 @@ const pkgInstall = (pkg, envTarget) => {
116
116
  tools.logInfo('installing dependencies');
117
117
  console.log(pkgJson.dependencies);
118
118
 
119
- return innerCommon.executeInstall(pkg.paths.root);
119
+ if (pkg.standalone) {
120
+ return innerCommon.executeInstall(pkg.paths.root, configUtils.global.getConfigOptionsStandalone().NPM_REGISTRY_INSTALL);
121
+ } else {
122
+ return innerCommon.executeInstall(pkg.paths.root);
123
+ }
124
+
120
125
 
121
126
  } else {
122
127
  tools.logWarning('No dependencies found to install');