@eui/tools 4.21.3 → 4.21.6

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.6
package/CHANGELOG.md CHANGED
@@ -1,3 +1,30 @@
1
+ ## 4.21.6 (2022-03-21)
2
+
3
+ ##### Bug Fixes
4
+
5
+ * **other:**
6
+ * skip euiVersion detection on remote without dependencies - EUI-4107 [EUI-4107](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-4107) ([de495105](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/de495105ab6a6458ac925ee9126c5b7bc143ff06))
7
+
8
+ * * *
9
+ * * *
10
+ ## 4.21.5 (2022-03-21)
11
+
12
+ ##### Bug Fixes
13
+
14
+ * **other:**
15
+ * 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))
16
+
17
+ * * *
18
+ * * *
19
+ ## 4.21.4 (2022-03-18)
20
+
21
+ ##### Bug Fixes
22
+
23
+ * **other:**
24
+ * 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))
25
+
26
+ * * *
27
+ * * *
1
28
  ## 4.21.3 (2022-03-17)
2
29
 
3
30
  ##### 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.6",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -251,12 +251,12 @@ module.exports.getLocalPackagesEuiVersion = () => {
251
251
  if (p.parent !== true && p.tsPackage !== false) {
252
252
  tools.logInfo(`checking ${p.name}`);
253
253
 
254
- let version = 'DEFAULT';
254
+ let version;
255
255
 
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
 
@@ -273,13 +273,20 @@ 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
  }
279
283
 
280
- tools.logInfo(`---- version found : ${version}\n`);
281
-
282
- versionsFound.push(version);
284
+ if (version) {
285
+ tools.logInfo(`---- version found : ${version}\n`);
286
+ versionsFound.push(version);
287
+ } else {
288
+ tools.logInfo('---- version detection skipped');
289
+ }
283
290
  }
284
291
  })
285
292