@eui/tools 6.20.14 → 6.20.15

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.15
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## 6.20.15 (2024-08-09)
2
+
3
+ ##### Chores
4
+
5
+ * **other:**
6
+ * 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))
7
+
8
+ * * *
9
+ * * *
1
10
  ## 6.20.14 (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.14",
3
+ "version": "6.20.15",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -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');