@eui/tools 6.12.11 → 6.12.12
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.12.
|
|
1
|
+
6.12.12
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 6.12.12 (2023-06-22)
|
|
2
|
+
|
|
3
|
+
##### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* v16 remote creation issue - EUI-7121 [EUI-7121](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7121) ([5ed61d1e](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/5ed61d1e24d9ffe429e4d748110549e84a66d60d))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
1
10
|
## 6.12.11 (2023-06-20)
|
|
2
11
|
|
|
3
12
|
##### Chores
|
package/package.json
CHANGED
|
@@ -31,6 +31,10 @@ const generateArgs = (args) => {
|
|
|
31
31
|
} else if (args.pkgFrontendVersion === constants.CONFIG_OPTIONS.pkgFrontendVersion.EUI15) {
|
|
32
32
|
fullName += '-eui15-remote-el-ui';
|
|
33
33
|
npmPkgName = `${args.pkgScope}/${args.pkgName}-eui15-remote-el`;
|
|
34
|
+
|
|
35
|
+
} else if (args.pkgFrontendVersion === constants.CONFIG_OPTIONS.pkgFrontendVersion.EUI16) {
|
|
36
|
+
fullName += '-eui16-remote-el-ui';
|
|
37
|
+
npmPkgName = `${args.pkgScope}/${args.pkgName}-eui16-remote-el`;
|
|
34
38
|
}
|
|
35
39
|
}
|
|
36
40
|
|