@eui/tools 6.21.112 → 6.21.113
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
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.21.
|
|
1
|
+
6.21.113
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 6.21.113 (2025-09-02)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* adapted remote metadata fetch for host - MWP-11955 [MWP-11955](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-11955) ([9b73367e](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/9b73367e25a1bba0ab8ba1cb6c13b86f160eafa3))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
1
10
|
## 6.21.112 (2025-09-02)
|
|
2
11
|
|
|
3
12
|
##### Chores
|
package/package.json
CHANGED
|
@@ -861,7 +861,11 @@ module.exports.extractRemotesMetadata = (project) => {
|
|
|
861
861
|
|
|
862
862
|
let remote;
|
|
863
863
|
if (configUtils.remotes.isVirtualRemote(r)) {
|
|
864
|
-
|
|
864
|
+
try {
|
|
865
|
+
remote = configUtils.remotes.getRemote(r);
|
|
866
|
+
} catch(e) {
|
|
867
|
+
tools.logWarning('Remote not found in config');
|
|
868
|
+
}
|
|
865
869
|
} else {
|
|
866
870
|
remote = configUtils.packages.getPackage(r, true, true);
|
|
867
871
|
}
|