@eui/tools 6.11.14 → 6.11.16
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.16
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## 6.11.16 (2023-04-26)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* re-enable debug on git commitPush method - EUI-7121 [EUI-7121](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7121) ([95b1a0a5](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/95b1a0a552f52499ef63bea57038006019fe848e))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
10
|
+
## 6.11.15 (2023-04-25)
|
|
11
|
+
|
|
12
|
+
##### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* **other:**
|
|
15
|
+
* remove double translations loader for v10 and v15 full virtual remotes - EUI-7121 [EUI-7121](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7121) ([e651b952](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/e651b9522dc9635278f620942cd6a2e915d57486))
|
|
16
|
+
|
|
17
|
+
* * *
|
|
18
|
+
* * *
|
|
1
19
|
## 6.11.14 (2023-04-24)
|
|
2
20
|
|
|
3
21
|
##### Chores
|
package/package.json
CHANGED
|
@@ -19,10 +19,6 @@ registerLocaleData(localeFr, 'fr', localeFrExtra);
|
|
|
19
19
|
const i18nConfig: I18nConfig = {
|
|
20
20
|
i18nLoader: {
|
|
21
21
|
i18nFolders: ['elements/@remote.name@/bundles/assets/i18n-compiled'],
|
|
22
|
-
i18nResources: [{
|
|
23
|
-
prefix: 'assets/i18n-eui/',
|
|
24
|
-
suffix: '.json',
|
|
25
|
-
}],
|
|
26
22
|
},
|
|
27
23
|
i18nService: {
|
|
28
24
|
languages: ['en', 'fr'],
|
|
@@ -19,10 +19,6 @@ registerLocaleData(localeFr, 'fr', localeFrExtra);
|
|
|
19
19
|
const i18nConfig: I18nConfig = {
|
|
20
20
|
i18nLoader: {
|
|
21
21
|
i18nFolders: ['elements/@remote.name@/bundles/assets/i18n-compiled'],
|
|
22
|
-
i18nResources: [{
|
|
23
|
-
prefix: 'assets/i18n-eui/',
|
|
24
|
-
suffix: '.json',
|
|
25
|
-
}],
|
|
26
22
|
},
|
|
27
23
|
i18nService: {
|
|
28
24
|
languages: ['en', 'fr'],
|
|
@@ -115,9 +115,9 @@ const commitAndPush = (branch, message, folder) => {
|
|
|
115
115
|
execa.sync('git', ['push', 'origin', branch], { cwd: folder });
|
|
116
116
|
|
|
117
117
|
} catch (e3) {
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
118
|
+
if (debug) {
|
|
119
|
+
console.log(e3);
|
|
120
|
+
}
|
|
121
121
|
throw new Error(`Failed to push ${message} to ${folder}`);
|
|
122
122
|
}
|
|
123
123
|
}
|