@eui/tools 6.3.27 → 6.3.28

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.3.27
1
+ 6.3.28
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## 6.3.28 (2023-02-10)
2
+
3
+ ##### Bug Fixes
4
+
5
+ * **other:**
6
+ * bug in file replacements for remote full sources generation - MWP-9204 [MWP-9204](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-9204) ([9442e99b](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/9442e99b3a39a1cdced7c4090073776d24289957))
7
+
8
+ * * *
9
+ * * *
1
10
  ## 6.3.27 (2023-02-09)
2
11
 
3
12
  ##### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.3.27",
3
+ "version": "6.3.28",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -200,6 +200,10 @@ module.exports.generateVirtualRemote = (remoteName, cloneRemote = true) => {
200
200
  tools.replaceInFileSync(moduleTsPath, '// DECLARATIONS', declarationsContent.join('\n'));
201
201
  tools.replaceInFileSync(moduleTsPath, '// PROVIDERS', providersContent.join(',\n'));
202
202
  tools.replaceInFileSync(moduleTsPath, '// CONSTRUCTOR DECLARATIONS', constructorDeclarationsContent.join('\n'));
203
+
204
+ if (remote.skeletonConfig.options.participant) {
205
+ tools.replaceInPath(remoteSrcPath, '@block.container.name@', remote.skeletonConfig.blockContainerName);
206
+ }
203
207
  }
204
208
 
205
209
  tools.logInfo('Replacing skeleton config tokens');
@@ -209,9 +213,7 @@ module.exports.generateVirtualRemote = (remoteName, cloneRemote = true) => {
209
213
  tools.replaceInPath(remoteSrcPath, '@store.name@', remote.skeletonConfig.storeName);
210
214
  tools.replaceInPath(remoteSrcPath, '@root.common.module@', remote.skeletonConfig.rootCommonModule);
211
215
  tools.replaceInPath(remoteSrcPath, '@root.npm.pkg@', remote.skeletonConfig.rootNpmPkg);
212
- if (remote.skeletonConfig.options.participant) {
213
- tools.replaceInPath(remoteSrcPath, '@block.container.name@', remote.skeletonConfig.blockContainerName);
214
- }
216
+
215
217
 
216
218
  tools.logSuccess('OK => copy done - Tokens replaced');
217
219
  }