@eui/tools 6.6.0 → 6.6.2

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.6.0
1
+ 6.6.2
package/CHANGELOG.md CHANGED
@@ -1,3 +1,21 @@
1
+ ## 6.6.2 (2023-03-06)
2
+
3
+ ##### Chores
4
+
5
+ * **other:**
6
+ * Change Backend SQ template MWP-9366 [MWP-9366](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-9366) ([82251537](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/822515374f350fd58837312f67a23886a6e02397))
7
+
8
+ * * *
9
+ * * *
10
+ ## 6.6.1 (2023-03-05)
11
+
12
+ ##### Bug Fixes
13
+
14
+ * **other:**
15
+ * missing param declaration for packageInit app - EUI-7121 [EUI-7121](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7121) ([ffa0dc45](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/ffa0dc4540b7ba5af21fabeebfea77d36c595cc4))
16
+
17
+ * * *
18
+ * * *
1
19
  ## 6.6.0 (2023-03-05)
2
20
 
3
21
  ##### New Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.6.0",
3
+ "version": "6.6.2",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -23,7 +23,7 @@ app.use('/api', require('./routes'));
23
23
 
24
24
  // STARTING - opening html page if prod flag is passed
25
25
  app.listen(app.get('port'), () => {
26
- const { prod, stats } = tools.getArgs();
26
+ const { prod, stats, packageInit } = tools.getArgs();
27
27
  if (prod) {
28
28
  if (stats) {
29
29
  open('http://localhost:3000/stats.html');
@@ -1,4 +1,4 @@
1
- sonar.projectKey=CSDR-@project.groupid@.@project.name@
1
+ sonar.projectKey=CSDR-@project.name@
2
2
  sonar.projectName=@project.name@
3
3
  sonar.projectVersion=@project.version@
4
4