@eui/tools 6.21.120 → 6.21.121

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.21.120
1
+ 6.21.121
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## 6.21.121 (2025-09-09)
2
+
3
+ ##### Chores
4
+
5
+ * **other:**
6
+ * wrong node:util import - EUI-10199 [EUI-10199](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-10199) ([ab936efb](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/ab936efbe93a79f7c8718c78e0e9011357b9f303))
7
+
8
+ * * *
9
+ * * *
1
10
  ## 6.21.120 (2025-09-09)
2
11
 
3
12
  ##### Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.21.120",
3
+ "version": "6.21.121",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
package/sandbox.js CHANGED
@@ -23,6 +23,7 @@ const apiUtils = require('./scripts/utils/api-utils');
23
23
  const versionUtils = require('./scripts/csdr/version/version-utils');
24
24
  const publishUtils = require('./scripts/utils/publish/publish-utils');
25
25
 
26
+ tools.logSuccess('yellow', 'test');
26
27
 
27
28
  // console.log(configUtils.packages.getPackages());
28
29
  // console.log(configUtils.packages.getPackage('eui-tools'));
@@ -17,7 +17,7 @@ const execa = require('execa');
17
17
  const replace = require('replace-in-file');
18
18
  const xml2js = require('xml2js');
19
19
  const moment = require('moment');
20
- const util = require('util');
20
+ const util = require('node:util');
21
21
 
22
22
  const isTestRunning = process.env._TEST;
23
23