@eui/tools 6.21.97 → 6.21.98
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.21.
|
|
1
|
+
6.21.98
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 6.21.98 (2025-07-08)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* adapted migration script - MWP-11955 [MWP-11955](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-11955) ([0842ca85](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/0842ca858570b9f84c3736e59572837372b4bd97))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
1
10
|
## 6.21.97 (2025-07-08)
|
|
2
11
|
|
|
3
12
|
##### Bug Fixes
|
package/package.json
CHANGED
|
@@ -122,6 +122,11 @@ module.exports.migrate = (pkg) => {
|
|
|
122
122
|
tools.logInfo('Importing existing medata for remote');
|
|
123
123
|
|
|
124
124
|
const remoteMedatadataEnvs = path.join(process.cwd(), 'packages', 'devops-metadata', `${currentRemoteName}-envs-metadata.json`);
|
|
125
|
+
|
|
126
|
+
if (!tools.isFileExists(remoteMedatadataEnvs)) {
|
|
127
|
+
return;
|
|
128
|
+
}
|
|
129
|
+
|
|
125
130
|
const remoteMedatadataVersions = path.join(process.cwd(), 'packages', 'devops-metadata', `${currentRemoteName}-versions-metadata.json`);
|
|
126
131
|
const remoteMedatadataHistory = path.join(process.cwd(), 'packages', 'devops-metadata', `${currentRemoteName}-history-metadata-v2.json`);
|
|
127
132
|
|