@eui/tools 4.21.3 → 4.21.4

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
- 4.21.3
1
+ 4.21.4
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## 4.21.4 (2022-03-18)
2
+
3
+ ##### Bug Fixes
4
+
5
+ * **other:**
6
+ * exclude remote package from local euiVersion checked - EUI-4107 [EUI-4107](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-4107) ([baa314da](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/baa314dab989503c6c54b319f17d6e33dce57bb5))
7
+
8
+ * * *
9
+ * * *
1
10
  ## 4.21.3 (2022-03-17)
2
11
 
3
12
  ##### Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "4.21.3",
3
+ "version": "4.21.4",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -256,7 +256,7 @@ module.exports.getLocalPackagesEuiVersion = () => {
256
256
  if (p.build && p.build.euiVersion) {
257
257
  version = p.build.euiVersion;
258
258
 
259
- } else {
259
+ } else if (!p.remote) {
260
260
  const depsCompositeFile = path.join(p.paths.pkgRootDirectory, 'dependencies-composite.json');
261
261
  tools.logInfo(`Try fetching version from ${depsCompositeFile}`);
262
262