@eui/tools 6.3.12 → 6.3.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.3.12
1
+ 6.3.13
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## 6.3.13 (2023-02-02)
2
+
3
+ ##### Bug Fixes
4
+
5
+ * **other:**
6
+ * resolutions for v7 node10 - adapted package history for parent package fetch - EUI-7035 [EUI-7035](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7035) ([7c661be6](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/7c661be667eb9e5532e1db9ca9f0e7c0fc3b3091))
7
+
8
+ * * *
9
+ * * *
1
10
  ## 6.3.12 (2023-02-01)
2
11
 
3
12
  ##### Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.3.12",
3
+ "version": "6.3.13",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -10,5 +10,6 @@
10
10
  "svg-sprite": "1.5.4",
11
11
  "winston": "2.4.6",
12
12
  "node-fetch": "2.6.7",
13
- "mocha": "8.4.0"
13
+ "mocha": "8.4.0",
14
+ "sass": "1.39.0"
14
15
  }
@@ -158,7 +158,7 @@ const getDiffBetweenBuildVersions = (pkg, fromBuildMetadata, toBuildMetadata) =>
158
158
  tools.logInfo(`parsing item : ${item.package}`);
159
159
 
160
160
  // getting the package name from the devops central metadata
161
- const pkgName = devopsMetadata.packagesLatestTag.filter((i) => {
161
+ let pkgName = devopsMetadata.packagesLatestTag.filter((i) => {
162
162
  return i.npmPkg === item.package;
163
163
  }).map((i) => {
164
164
  return i.name;