@eui/tools 6.2.40 → 6.2.41

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.2.40
1
+ 6.2.41
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## 6.2.41 (2022-11-28)
2
+
3
+ ##### Bug Fixes
4
+
5
+ * **cli:**
6
+ * backend wrong parameters call to function - EUI-6448 [EUI-6448](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-6448) ([9a0b53df](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/9a0b53df1fd1a7fcc297c6bd94a39f97aa325dd1))
7
+
8
+ * * *
9
+ * * *
1
10
  ## 6.2.40 (2022-11-23)
2
11
 
3
12
  ##### Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.2.40",
3
+ "version": "6.2.41",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -52,7 +52,7 @@ module.exports.generate = () => {
52
52
  return buildFrontend.generate(answers);
53
53
 
54
54
  } else if (answers.pkgType === constants.CONFIG_OPTIONS.pkgType.BACKEND) {
55
- return buildBackend.generate(answers);
55
+ return buildBackend.generate(answers.pkgName, answers.pkgScope, answers.pkgGroupId);
56
56
  }
57
57
  })
58
58