@eui/tools 6.3.36 → 6.3.37
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
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.3.
|
|
1
|
+
6.3.37
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 6.3.37 (2023-02-17)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* added dynamic forms for full remote skeleton injection - MWP-9204 [MWP-9204](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-9204) ([22d0cd8a](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/22d0cd8adbde4fd2422eb73bfd99e4c30dfa8736))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
1
10
|
## 6.3.36 (2023-02-15)
|
|
2
11
|
|
|
3
12
|
##### Bug Fixes
|
package/package.json
CHANGED
|
@@ -146,6 +146,7 @@ module.exports.generateVirtualRemote = (remoteName, cloneRemote = true) => {
|
|
|
146
146
|
const optionZipkinDef = tools.getJsonFileContent(path.join(fullOptionsPath, 'definitions', 'zipkin.json'));
|
|
147
147
|
const optionDynatraceDef = tools.getJsonFileContent(path.join(fullOptionsPath, 'definitions', 'dynatrace.json'));
|
|
148
148
|
const optionParticipantDef = tools.getJsonFileContent(path.join(fullOptionsPath, 'definitions', 'participant.json'));
|
|
149
|
+
const optionDynamicFormsDef = tools.getJsonFileContent(path.join(fullOptionsPath, 'definitions', 'dynamic-forms.json'));
|
|
149
150
|
|
|
150
151
|
tools.logInfo(`copying full sources skeleton : ${fullCommonPath} ==> ${remoteSrcPath}`);
|
|
151
152
|
tools.copy(fullCommonPath, remoteSrcPath);
|
|
@@ -185,6 +186,11 @@ module.exports.generateVirtualRemote = (remoteName, cloneRemote = true) => {
|
|
|
185
186
|
pushContent(optionDynatraceDef);
|
|
186
187
|
}
|
|
187
188
|
|
|
189
|
+
// dynamic-forms
|
|
190
|
+
if (remote.skeletonConfig.options.dynamicForms) {
|
|
191
|
+
pushContent(optionDynamicFormsDef);
|
|
192
|
+
}
|
|
193
|
+
|
|
188
194
|
// participant
|
|
189
195
|
if (remote.skeletonConfig.options.participant) {
|
|
190
196
|
tools.copy(optionParticipantPath, remoteSrcPath);
|