@eui/tools 6.21.15 → 6.21.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.
- package/.version.properties +1 -1
- package/CHANGELOG.md +10 -0
- package/README.md +1 -0
- package/package.json +1 -1
- package/scripts/csdr/install/common.js +7 -3
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.21.
|
|
1
|
+
6.21.16
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
## 6.21.16 (2024-12-30)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* remove force install on csdr nexus due to CSDR scope changes - EUI-7121 [EUI-7121](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7121) ([5df2c3f5](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/5df2c3f5dccef630164e3d60c7bc19a3b9109149))
|
|
7
|
+
* remove force install on csdr nexus due to CSDR scope changes ([0466f15b](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/0466f15b7a95ba8202745cf88c02eb9efeb57744))
|
|
8
|
+
|
|
9
|
+
* * *
|
|
10
|
+
* * *
|
|
1
11
|
## 6.21.15 (2024-12-20)
|
|
2
12
|
|
|
3
13
|
##### Chores
|
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -19,8 +19,8 @@ const getInstallRegistry = () => {
|
|
|
19
19
|
let installRegistry;
|
|
20
20
|
if (registry) {
|
|
21
21
|
installRegistry = registry;
|
|
22
|
-
} else {
|
|
23
|
-
|
|
22
|
+
// } else {
|
|
23
|
+
// installRegistry = NPM_REGISTRY_INSTALL;
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
return installRegistry;
|
|
@@ -138,7 +138,11 @@ const executeInstall = (module.exports.executeInstall = (cwdPath, npmRegistry) =
|
|
|
138
138
|
|
|
139
139
|
tools.logInfo(`Install from : ${installRegistry}`);
|
|
140
140
|
if (!dryRun && !skipInstall) {
|
|
141
|
-
|
|
141
|
+
if (installRegistry) {
|
|
142
|
+
return execa.shellSync(`yarn --registry ${installRegistry}`, { cwd: cwdPath, stdio: 'inherit' });
|
|
143
|
+
} else {
|
|
144
|
+
return execa.shellSync(`yarn`, { cwd: cwdPath, stdio: 'inherit' });
|
|
145
|
+
}
|
|
142
146
|
} else {
|
|
143
147
|
tools.logInfo(`Skipping install - Executing command : yarn --registry ${installRegistry}`);
|
|
144
148
|
}
|