@eui/tools 6.12.4 → 6.12.5

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.12.4
1
+ 6.12.5
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## 6.12.5 (2023-06-19)
2
+
3
+ ##### Bug Fixes
4
+
5
+ * **other:**
6
+ * execute styles audit before test execution - EUI-7121 [EUI-7121](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7121) ([11e78175](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/11e78175bbc9ea853d29862277cd12905ef23cdf))
7
+
8
+ * * *
9
+ * * *
1
10
  ## 6.12.4 (2023-06-18)
2
11
 
3
12
  ##### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.12.4",
3
+ "version": "6.12.5",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -69,6 +69,14 @@ module.exports.build = (pkg, isMaster) => {
69
69
  if (!skipLint) {
70
70
  tools.logSuccess();
71
71
  }
72
+ if (!skipAudit) {
73
+ return auditUtils.styles.audit(pkg);
74
+ }
75
+ })
76
+ .then((report) => {
77
+ if (report) {
78
+ auditStylesReport = report;
79
+ }
72
80
 
73
81
  if (!skipTest) {
74
82
  tools.logInfo('Testing...');
@@ -90,15 +98,6 @@ module.exports.build = (pkg, isMaster) => {
90
98
  tools.logSuccess();
91
99
  }
92
100
 
93
- if (!skipAudit) {
94
- return auditUtils.styles.audit(pkg);
95
- }
96
- })
97
- .then((report) => {
98
- if (report) {
99
- auditStylesReport = report;
100
- }
101
-
102
101
  if (!skipCompile) {
103
102
  tools.logInfo('Bundling package...');
104
103
  let args = ['--max_old_space_size=8096', ng, 'build', pkg.name];