@eui/tools 4.21.4 → 4.21.5

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.4
1
+ 4.21.5
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## 4.21.5 (2022-03-21)
2
+
3
+ ##### Bug Fixes
4
+
5
+ * **other:**
6
+ * euiVersion detection - 7.x deps composite force to DEFAULT - EUI-4107 [EUI-4107](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-4107) ([cda9a602](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/cda9a6024e781357f269f90702bc94b9e4abc17d))
7
+
8
+ * * *
9
+ * * *
1
10
  ## 4.21.4 (2022-03-18)
2
11
 
3
12
  ##### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "4.21.4",
3
+ "version": "4.21.5",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -273,6 +273,10 @@ module.exports.getLocalPackagesEuiVersion = () => {
273
273
  euiVersion = euiVersion.substr(1);
274
274
  }
275
275
  version = `${euiVersion}.x`;
276
+
277
+ if (version === '7.x') {
278
+ version = 'DEFAULT';
279
+ }
276
280
  }
277
281
  }
278
282
  }