@eui/tools 6.16.28 → 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.28
1
+ 6.16.29
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
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
+ * * *
1
10
  ## 6.16.28 (2024-06-13)
2
11
 
3
12
  ##### Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.16.28",
3
+ "version": "6.16.29",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -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
  }