@eui/tools 6.14.12 → 6.14.13

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.14.12
1
+ 6.14.13
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## 6.14.13 (2023-12-09)
2
+
3
+ ##### Bug Fixes
4
+
5
+ * **other:**
6
+ * package versionFirst retrieval typo in declaration - EUI-7121 [EUI-7121](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7121) ([67e6cbb1](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/67e6cbb1e3e7f4c88592992ccb08b1f1c225281a))
7
+
8
+ * * *
9
+ * * *
1
10
  ## 6.14.12 (2023-12-09)
2
11
 
3
12
  ##### Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.14.12",
3
+ "version": "6.14.13",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -61,9 +61,9 @@ module.exports.install = (providedDeps) => {
61
61
 
62
62
  return Promise.resolve()
63
63
 
64
- .then(() => {
65
- return metadataUtils.common.cloneMetadataRepo(true);
66
- })
64
+ // .then(() => {
65
+ // return metadataUtils.common.cloneMetadataRepo(true);
66
+ // })
67
67
 
68
68
  // getting internal packages deps - cloned locally
69
69
  .then(() => {
@@ -256,7 +256,7 @@ const getPackageVersionFirst = (pkg) => {
256
256
  const versions = getPackageVersions(pkg);
257
257
 
258
258
  if (versions && versions.length !== 0) {
259
- return version[0];
259
+ return versions[0];
260
260
  }
261
261
  };
262
262