@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.
- package/.version.properties +1 -1
- package/CHANGELOG.md +9 -0
- package/package.json +1 -1
- package/sandbox.js +1 -0
- package/scripts/utils/tools.js +1 -1
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.21.
|
|
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
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'));
|
package/scripts/utils/tools.js
CHANGED
|
@@ -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
|
|