@eui/tools 6.21.103 → 6.21.105

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.103
1
+ 6.21.105
package/CHANGELOG.md CHANGED
@@ -1,3 +1,21 @@
1
+ ## 6.21.105 (2025-07-24)
2
+
3
+ ##### Chores
4
+
5
+ * **other:**
6
+ * cleanup old resources - forced cheerio to 1.1.0 for v15 and v16 install - EUI-10199 [EUI-10199](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-10199) ([2cf642b5](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/2cf642b520683eabd02aaeb255691d4a12294e86))
7
+
8
+ * * *
9
+ * * *
10
+ ## 6.21.104 (2025-07-18)
11
+
12
+ ##### Chores
13
+
14
+ * **other:**
15
+ * 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))
16
+
17
+ * * *
18
+ * * *
1
19
  ## 6.21.103 (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.103",
3
+ "version": "6.21.105",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -6,5 +6,6 @@
6
6
  "crypto-js": ">=4.2.0",
7
7
  "@babel/traverse": ">=7.23.2",
8
8
  "undici": "6.21.3",
9
- "minimatch": "3.1.2"
9
+ "minimatch": "3.1.2",
10
+ "cheerio": "1.1.0"
10
11
  }
@@ -5,5 +5,6 @@
5
5
  "crypto-js": ">=4.2.0",
6
6
  "@babel/traverse": ">=7.23.2",
7
7
  "undici": "6.21.3",
8
- "minimatch": "3.1.2"
8
+ "minimatch": "3.1.2",
9
+ "cheerio": "1.1.0"
9
10
  }
@@ -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) => {
@@ -1,6 +0,0 @@
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
@@ -1,8 +0,0 @@
1
- {
2
- "minimist": ">=1.2.6",
3
- "xmlhttprequest-ssl": ">=1.6.1",
4
- "@types/node": "14.14.10",
5
- "get-stream": "4.1.0",
6
- "cheerio": "1.0.0-rc.12",
7
- "send": "0.19.0"
8
- }