@eui/tools 6.21.102 → 6.21.104

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.102
1
+ 6.21.104
package/CHANGELOG.md CHANGED
@@ -1,3 +1,21 @@
1
+ ## 6.21.104 (2025-07-18)
2
+
3
+ ##### Chores
4
+
5
+ * **other:**
6
+ * app post-build forced copy of media assets - EUI-10199 [EUI-10199](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-10199) ([d70068da](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/d70068da703157f9b81b7e90b871539023b6e252))
7
+
8
+ * * *
9
+ * * *
10
+ ## 6.21.103 (2025-07-11)
11
+
12
+ ##### Chores
13
+
14
+ * **other:**
15
+ * add explicit zone.js loading for v19 remotes loaded in an iframe MWP-11955 [MWP-11955](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-11955) ([d566ff2e](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/d566ff2ea62901090b43a58942e65caa35f30cb8))
16
+
17
+ * * *
18
+ * * *
1
19
  ## 6.21.102 (2025-07-11)
2
20
 
3
21
  ##### Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.21.102",
3
+ "version": "6.21.104",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -1,5 +1,7 @@
1
1
  import { enableProdMode } from '@angular/core';
2
2
  import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
3
+ import 'zone.js';
4
+
3
5
  import { AppModule } from './app/module';
4
6
  import { environment } from './environments/environment';
5
7
  if (environment.production) {
@@ -299,6 +299,11 @@ module.exports.angular = (
299
299
  const i18nfiles = tools.getFiles(desti18ncompiledPath);
300
300
  console.log(i18nfiles);
301
301
  }
302
+
303
+ const mediaAssetsPath = path.join(currentProject.paths.rootPath, 'dist', 'assets', 'media');
304
+ if (tools.isDirExists(mediaAssetsPath)) {
305
+ tools.copydirFiles(mediaAssetsPath, path.join(currentProject.paths.rootPath, 'dist', 'media'));
306
+ }
302
307
  })
303
308
 
304
309
  .catch((e) => {