@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.
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.6.
|
|
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
package/scripts/app/server.js
CHANGED
|
@@ -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');
|