@eui/tools 6.21.96 → 6.21.97

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.96
1
+ 6.21.97
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## 6.21.97 (2025-07-08)
2
+
3
+ ##### Bug Fixes
4
+
5
+ * **other:**
6
+ * migrate script - MWP-11955 [MWP-11955](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-11955) ([1481823f](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/1481823fe61febe25631b62415a4e131208d651d))
7
+
8
+ * * *
9
+ * * *
1
10
  ## 6.21.96 (2025-07-07)
2
11
 
3
12
  ##### Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.21.96",
3
+ "version": "6.21.97",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -56,6 +56,8 @@ module.exports.migrate = (pkg) => {
56
56
 
57
57
  // REMOTE CREATION
58
58
 
59
+ const remotesTriggerPath = path.join(process.cwd(), 'remotes-trigger');
60
+
59
61
  if (!tools.isDirExists(remotesTriggerPath)) {
60
62
  return;
61
63
  }
@@ -108,11 +110,8 @@ module.exports.migrate = (pkg) => {
108
110
 
109
111
 
110
112
  tools.logInfo('Initializing remote trigger repository');
111
-
112
- const remotesTriggerPath = path.join(process.cwd(), 'remotes-trigger');
113
113
 
114
114
 
115
-
116
115
  tools.copydirFiles(path.join(__dirname, 'skeleton', 'remote-trigger'), path.join(remotesTriggerPath, newRemoteName));
117
116
  tools.replaceInFileSync(path.join(remotesTriggerPath, newRemoteName, '.gitlab-ci.yml'), '@module.remote.name@', newRemoteName);
118
117