@eui/tools 6.21.77 → 6.21.78

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.21.77
1
+ 6.21.78
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## 6.21.78 (2025-05-22)
2
+
3
+ ##### Chores
4
+
5
+ * **other:**
6
+ * debug i18n-compiled post build on project - EUI-10199 [EUI-10199](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-10199) ([d78dc309](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/d78dc3096b731d62085651cd6671daad84a3c154))
7
+
8
+ * * *
9
+ * * *
1
10
  ## 6.21.77 (2025-05-22)
2
11
 
3
12
  ##### Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.21.77",
3
+ "version": "6.21.78",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -292,6 +292,15 @@ module.exports.angular = (
292
292
  }
293
293
  })
294
294
 
295
+ .then(() => {
296
+ const desti18ncompiledPath = path.join(currentProject.paths.rootPath, 'dist', 'assets', 'i18n-compiled');
297
+ if (tools.isDirExists(desti18ncompiledPath)) {
298
+ tools.logTitle('Post-build assets i18n-compiled folder content:');
299
+ const i18nfiles = tools.getFiles(desti18ncompiledPath);
300
+ console.log(i18nfiles);
301
+ }
302
+ })
303
+
295
304
  .catch((e) => {
296
305
  throw e;
297
306
  });