@eui/tools 6.11.23 → 6.11.24
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.11.
|
|
1
|
+
6.11.24
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 6.11.24 (2023-06-01)
|
|
2
|
+
|
|
3
|
+
##### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* eUI not taken into account in i18n compilation pre-build - EUI-7121 [EUI-7121](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7121) ([02b06f1c](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/02b06f1c4346060dead95958c16d5c6d0232e72a))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
1
10
|
## 6.11.23 (2023-05-31)
|
|
2
11
|
|
|
3
12
|
##### Chores
|
package/package.json
CHANGED
|
@@ -90,7 +90,7 @@ module.exports.generate = (inputScopes = '', inputPkg) => {
|
|
|
90
90
|
// Add module translations
|
|
91
91
|
packages.forEach((pkgDeps) => {
|
|
92
92
|
let baseI18nPath = 'i18n';
|
|
93
|
-
if (
|
|
93
|
+
if (pkgDeps.scope === '@eui') {
|
|
94
94
|
baseI18nPath = 'i18n-eui';
|
|
95
95
|
}
|
|
96
96
|
processTranslationsFolder(pkgDeps, baseI18nPath, lang);
|