@eui/tools 6.16.16 → 6.16.17

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.16
1
+ 6.16.17
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## 6.16.17 (2024-05-07)
2
+
3
+ ##### Bug Fixes
4
+
5
+ * **audit:**
6
+ * adapted regex for px in style detection - MWP-10831 [MWP-10831](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-10831) ([f3e5b38e](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/f3e5b38e7f68f59b1899c65c446f30a21c4b6ceb))
7
+
8
+ * * *
9
+ * * *
1
10
  ## 6.16.16 (2024-04-30)
2
11
 
3
12
  ##### Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.16.16",
3
+ "version": "6.16.17",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -311,7 +311,7 @@ const runStylesAudit = (module.exports.runStylesAudit = (pkg, customPath) => {
311
311
  }
312
312
 
313
313
  let sizesIndices = [];
314
- regex = /px/gi;
314
+ regex = /px |px;/gi;
315
315
  while ((result = regex.exec(fileContent))) {
316
316
  sizesIndices.push(result.index);
317
317
  }