@eui/tools 5.3.43 → 5.3.44
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
|
-
5.3.
|
|
1
|
+
5.3.44
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 5.3.44 (2022-09-08)
|
|
2
|
+
|
|
3
|
+
##### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* backend timestamp of version failure as of node14 - EUI-4107 [EUI-4107](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-4107) ([6665f4e2](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/6665f4e2a0473268a8156b4cbe60e901ca0cbc06))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
1
10
|
## 5.3.43 (2022-09-07)
|
|
2
11
|
|
|
3
12
|
##### Chores
|
package/package.json
CHANGED
|
@@ -130,7 +130,7 @@ const writePomXml = (pkg, newVersion, isSnapshot, isForceTimestamp = true) => {
|
|
|
130
130
|
// timestamp file is forced to have at least one file to commit, as snapshot release
|
|
131
131
|
// for backend can keep the same version until its latest
|
|
132
132
|
const tsversionFile = path.resolve(pkg.paths.pkgDirectory, '.tsversion');
|
|
133
|
-
fs.writeFileSync(tsversionFile, Date.now());
|
|
133
|
+
fs.writeFileSync(tsversionFile, Date.now().toString());
|
|
134
134
|
|
|
135
135
|
const versionFile = path.resolve(pkg.paths.pkgDirectory, '.version.properties');
|
|
136
136
|
fs.writeFileSync(versionFile, newVersion);
|