@eui/tools 6.3.44 → 6.3.45

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.44
1
+ 6.3.45
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## 6.3.45 (2023-02-21)
2
+
3
+ ##### Chores
4
+
5
+ * **other:**
6
+ * addition of "," for DynamicFormsModule.forRoot(dynMapConfig) metadata MWP-9235 [MWP-9235](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-9235) ([89050e1b](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/89050e1bf83297c559da2eb875443caff84b5f0c))
7
+
8
+ * * *
9
+ * * *
1
10
  ## 6.3.44 (2023-02-21)
2
11
 
3
12
  ##### Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.3.44",
3
+ "version": "6.3.45",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -221,7 +221,7 @@ module.exports.generateVirtualRemote = (remoteName, cloneRemote = true) => {
221
221
  // replace option in module.ts placeholders
222
222
  const moduleTsPath = path.join(remoteSrcPath, 'app', 'module.ts');
223
223
  tools.replaceInFileSync(moduleTsPath, '// IMPORTS', importsContent.join('\n'));
224
- tools.replaceInFileSync(moduleTsPath, '// DEFINITIONS', definitionsContent.join(',\n'));
224
+ tools.replaceInFileSync(moduleTsPath, '// DEFINITIONS', `${definitionsContent.join() ? definitionsContent.join(',\n') + ',' : ''}`);
225
225
  tools.replaceInFileSync(moduleTsPath, '// DECLARATIONS', declarationsContent.join('\n'));
226
226
  tools.replaceInFileSync(moduleTsPath, '// PROVIDERS', providersContent.join(',\n'));
227
227
  tools.replaceInFileSync(moduleTsPath, '// CONSTRUCTOR DECLARATIONS', constructorDeclarationsContent.join('\n'));