@eui/tools 6.11.9 → 6.11.11

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.11.9
1
+ 6.11.11
package/CHANGELOG.md CHANGED
@@ -1,3 +1,21 @@
1
+ ## 6.11.11 (2023-04-20)
2
+
3
+ ##### Bug Fixes
4
+
5
+ * **other:**
6
+ * translation scopes on eUI libs not having i18n-eui set - EUI-7121 [EUI-7121](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7121) ([dd132fcf](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/dd132fcfa2f8d0fc051746b42196919f0096982e))
7
+
8
+ * * *
9
+ * * *
10
+ ## 6.11.10 (2023-04-19)
11
+
12
+ ##### Chores
13
+
14
+ * **other:**
15
+ * adapted budgetsd for non-optimized builds - added missing browserlist for v10 builds - EUI-7121 [EUI-7121](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7121) ([1b6836aa](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/1b6836aa18b24d6ddeca05f889e26532a89c9d59))
16
+
17
+ * * *
18
+ * * *
1
19
  ## 6.11.9 (2023-04-19)
2
20
 
3
21
  ##### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.11.9",
3
+ "version": "6.11.11",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -79,8 +79,8 @@ module.exports.angularProjectDef = {
79
79
  "budgets": [
80
80
  {
81
81
  "type": "initial",
82
- "maximumWarning": "2mb",
83
- "maximumError": "8mb"
82
+ "maximumWarning": "10mb",
83
+ "maximumError": "20mb"
84
84
  }
85
85
  ]
86
86
  },
@@ -0,0 +1,6 @@
1
+ last 1 Chrome version
2
+ last 1 Firefox version
3
+ last 2 Edge major versions
4
+ last 2 Safari major versions
5
+ last 2 iOS major versions
6
+ Firefox ESR
@@ -100,7 +100,13 @@ module.exports.generate = (inputScopes = '', inputPkg) => {
100
100
  tools.logInfo(`${file} found...adding`);
101
101
  addTranslation(file, lang)
102
102
  } else {
103
- tools.logInfo(`${file} not found...skipping`);
103
+ file = path.join(pkg.folder, `assets/i18n/${lang}.json`);
104
+ if (tools.isFileExists(file)) {
105
+ tools.logInfo(`${file} found...adding`);
106
+ addTranslation(file, lang)
107
+ } else {
108
+ tools.logInfo(`${file} not found...skipping`);
109
+ }
104
110
  }
105
111
  });
106
112