@eui/tools 6.3.26 → 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.
- package/.version.properties +1 -1
- package/CHANGELOG.md +18 -0
- package/package.json +1 -1
- package/scripts/csdr/cli/package.js +0 -1
- package/scripts/csdr/init/remotes.js +5 -3
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.3.
|
|
1
|
+
6.3.28
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
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
|
+
* * *
|
|
10
|
+
## 6.3.27 (2023-02-09)
|
|
11
|
+
|
|
12
|
+
##### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* **other:**
|
|
15
|
+
* cli remote v15 creation - MWP-9204 [MWP-9204](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-9204) ([982872db](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/982872dbdf809c2539d12ed1e1a710e853acd55e))
|
|
16
|
+
|
|
17
|
+
* * *
|
|
18
|
+
* * *
|
|
1
19
|
## 6.3.26 (2023-02-09)
|
|
2
20
|
|
|
3
21
|
##### Chores
|
package/package.json
CHANGED
|
@@ -39,7 +39,6 @@ module.exports.generate = () => {
|
|
|
39
39
|
answers.pkgFrontendType === constants.CONFIG_OPTIONS.pkgFrontendType.REMOTE
|
|
40
40
|
) {
|
|
41
41
|
answers.isVirtualRemote = true;
|
|
42
|
-
answers.isFullVirtualRemote = true;
|
|
43
42
|
}
|
|
44
43
|
|
|
45
44
|
if (answers.pkgFrontendType === constants.CONFIG_OPTIONS.pkgFrontendType.REMOTE) {
|
|
@@ -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
|
-
|
|
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
|
}
|