@eui/tools 6.16.27 → 6.16.29

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.16.27
1
+ 6.16.29
package/CHANGELOG.md CHANGED
@@ -1,3 +1,21 @@
1
+ ## 6.16.29 (2024-06-13)
2
+
3
+ ##### Chores
4
+
5
+ * **other:**
6
+ * added exclusion for @eui/styles for eUI local install - EUI-9014 [EUI-9014](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-9014) ([233c77b0](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/233c77b0581da48bdac6ca99f0f71d9a9c719e10))
7
+
8
+ * * *
9
+ * * *
10
+ ## 6.16.28 (2024-06-13)
11
+
12
+ ##### Chores
13
+
14
+ * **other:**
15
+ * add v19 resources for init - EUI-9014 [EUI-9014](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-9014) ([4e8a450a](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/4e8a450a6eb504878ff890bb5a20ad21b409691b))
16
+
17
+ * * *
18
+ * * *
1
19
  ## 6.16.27 (2024-06-12)
2
20
 
3
21
  ##### Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.16.27",
3
+ "version": "6.16.29",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -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
@@ -0,0 +1,11 @@
1
+ {
2
+ "js-yaml": ">=3.13.1",
3
+ "pdfjs-dist": ">=4.2.67",
4
+ "tar": ">=6.2.1",
5
+ "katex": ">=0.16.10",
6
+ "follow-redirects": ">=1.15.4",
7
+ "word-wrap": ">=1.2.4",
8
+ "postcss": ">=8.4.31",
9
+ "express": ">=4.19.2",
10
+ "semver": ">=7.5.2"
11
+ }
@@ -50,7 +50,8 @@ const getLocalPackagesDeps = module.exports.getLocalPackagesDeps = () => {
50
50
  .reduce((acc, k) => {
51
51
  if (k.indexOf('@eui') !== -1 ) {
52
52
  if (k.indexOf('@eui/ecl') !== -1 ||
53
- k.indexOf('@eui/styles-base') !== -1
53
+ k.indexOf('@eui/styles-base') !== -1 ||
54
+ k.indexOf('@eui/styles') !== -1
54
55
  ) {
55
56
  acc[k] = pkgDeps[k];
56
57
  }