@coana-tech/cli 14.12.179 → 14.12.182

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.
package/cli.mjs CHANGED
@@ -236100,15 +236100,15 @@ function displayResultsSummaryInternal(vulns, workspaceTimings) {
236100
236100
  workspaceStatsMap.set(workspace, stats);
236101
236101
  for (const [, { reachability, resultType }] of vulnResultsMap) {
236102
236102
  stats.vulnerabilities++;
236103
- if (reachability === "REACHABLE") {
236103
+ if (resultType === "noAnalysisCheck") {
236104
+ stats.noAnalysisCheck++;
236105
+ } else if (reachability === "REACHABLE") {
236104
236106
  stats.reachable++;
236105
236107
  } else if (reachability === "UNREACHABLE") {
236106
236108
  stats.unreachable++;
236107
236109
  } else {
236108
236110
  if (resultType === "missingVulnerabilityPattern") {
236109
236111
  stats.missingPattern++;
236110
- } else if (resultType === "noAnalysisCheck") {
236111
- stats.noAnalysisCheck++;
236112
236112
  } else if (resultType === "unknown") {
236113
236113
  stats.unknownFiltered++;
236114
236114
  } else if (resultType === "analysisError") {
@@ -251427,7 +251427,7 @@ async function onlineScan(dependencyTree, apiKey, timeout) {
251427
251427
  }
251428
251428
 
251429
251429
  // dist/version.js
251430
- var version3 = "14.12.179";
251430
+ var version3 = "14.12.182";
251431
251431
 
251432
251432
  // dist/cli-core.js
251433
251433
  var { mapValues, omit, partition, pickBy: pickBy2 } = import_lodash15.default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coana-tech/cli",
3
- "version": "14.12.179",
3
+ "version": "14.12.182",
4
4
  "description": "Coana CLI",
5
5
  "type": "module",
6
6
  "bin": {