@eui/tools 6.11.12 → 6.11.13

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.11.12
1
+ 6.11.13
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## 6.11.13 (2023-04-21)
2
+
3
+ ##### Bug Fixes
4
+
5
+ * **other:**
6
+ * don't check dependencies gates when no vulnerabilities found - EUI-7121 [EUI-7121](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7121) ([bb1ff63d](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/bb1ff63d04573f4e7ba220aace4108322df53332))
7
+
8
+ * * *
9
+ * * *
1
10
  ## 6.11.12 (2023-04-21)
2
11
 
3
12
  ##### Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.11.12",
3
+ "version": "6.11.13",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -123,6 +123,10 @@ module.exports.audit = (pkg) => {
123
123
  })
124
124
 
125
125
  .then(() => {
126
+ if (!outReport) {
127
+ return;
128
+ }
129
+
126
130
  // getting config options for gates defined
127
131
  const configOptions = configUtils.global.getConfigOptions();
128
132