@eui/tools 6.21.66 → 6.21.67
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/scripts/csdr/init/remotes.js +4 -0
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.21.
|
|
1
|
+
6.21.67
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 6.21.67 (2025-04-24)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* add debug of module.ts replacement for remote skeleton options - EUI-10199 [EUI-10199](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-10199) ([db6090c8](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/db6090c8cf1614924f0096356d4bd472ce827e87))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
1
10
|
## 6.21.66 (2025-04-24)
|
|
2
11
|
|
|
3
12
|
##### Chores
|
package/package.json
CHANGED
|
@@ -348,6 +348,10 @@ module.exports.generateVirtualRemote = (remoteName, cloneRemotesConfigFlag = tru
|
|
|
348
348
|
tools.replaceInFileSync(moduleTsPath, '// PROVIDERS', providersContent.join(',\n'));
|
|
349
349
|
tools.replaceInFileSync(moduleTsPath, '// CONSTRUCTOR DECLARATIONS', constructorDeclarationsContent.join('\n'));
|
|
350
350
|
|
|
351
|
+
tools.logInfo('module.ts replaced content result : ');
|
|
352
|
+
const moduleTsContent = tools.getFileContent(moduleTsPath);
|
|
353
|
+
console.log(moduleTsContent);
|
|
354
|
+
|
|
351
355
|
tools.logInfo('Replacing skeleton config tokens');
|
|
352
356
|
tools.replaceInPath(remoteSrcPath, '@remote.name@', remote.name);
|
|
353
357
|
tools.replaceInPath(remoteSrcPath, '@base.url@', remote.skeletonConfig.baseUrl);
|