@eui/tools 6.8.0 → 6.8.1

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.8.0
1
+ 6.8.1
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## 6.8.1 (2023-03-10)
2
+
3
+ ##### Bug Fixes
4
+
5
+ * **other:**
6
+ * project eUI version fetch when no dependencies-composite - EUI-7240 [EUI-7240](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7240) ([f78ecdc8](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/f78ecdc823d2d7ebd49b21dea47ac70c59cfc6db))
7
+
8
+ * * *
9
+ * * *
1
10
  ## 6.8.0 (2023-03-09)
2
11
 
3
12
  ##### New Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.8.0",
3
+ "version": "6.8.1",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -189,6 +189,13 @@ module.exports.registerAngularProjectDef = (project, build = false, element = fa
189
189
  angularRootPath = project.paths.root;
190
190
  } else {
191
191
  euiVersion = innerProjects.getProjectEuiVersion(project);
192
+
193
+ if (!euiVersion) {
194
+ if (project.build && project.build.euiVersion) {
195
+ euiVersion = project.build.euiVersion;
196
+ }
197
+ }
198
+
192
199
  angularRootPath = project.paths.angularPath;
193
200
  }
194
201