@eui/tools 6.15.3 → 6.15.5

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.15.3
1
+ 6.15.5
package/CHANGELOG.md CHANGED
@@ -1,3 +1,21 @@
1
+ ## 6.15.5 (2023-12-18)
2
+
3
+ ##### Bug Fixes
4
+
5
+ * **other:**
6
+ * wrong import of tools - EUI-7121 [EUI-7121](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7121) ([ae23309b](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/ae23309bb7e6843766fa6926f6a92c9c72288701))
7
+
8
+ * * *
9
+ * * *
10
+ ## 6.15.4 (2023-12-17)
11
+
12
+ ##### Bug Fixes
13
+
14
+ * **other:**
15
+ * backend metadata missing moment import - EUI-7121 [EUI-7121](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7121) ([b81d5301](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/b81d5301523ca1ea87081a9d3036dbd592813b3b))
16
+
17
+ * * *
18
+ * * *
1
19
  ## 6.15.3 (2023-12-16)
2
20
 
3
21
  ##### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.15.3",
3
+ "version": "6.15.5",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -2,6 +2,7 @@
2
2
 
3
3
  // GLOBAL
4
4
  const path = require('path');
5
+ const moment = require('moment');
5
6
 
6
7
  // LOCAL
7
8
  const tools = require('../../utils/tools');
@@ -140,7 +140,7 @@ module.exports.run = () => {
140
140
  }
141
141
  })
142
142
  .catch((e) => {
143
- tools.logError('Error generating diffs report for current remote processed :');
143
+ utils.tools.logError('Error generating diffs report for current remote processed :');
144
144
  console.log(e);
145
145
  })
146
146
  }