Socket
Socket
Sign inDemoInstall

snyk-to-html

Package Overview
Dependencies
21
Maintainers
1
Versions
55
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 2.3.4 to 2.3.5

11

dist/lib/snyk-to-html.js

@@ -76,2 +76,5 @@ #!/usr/bin/env node

}
else if (data.docker) {
return processContainerData(data, remediation, template, summary);
}
else {

@@ -264,2 +267,10 @@ return processData(data, remediation, template, summary);

}
async function processContainerData(data, remediation, template, summary) {
if (!Array.isArray(data) && data.applications && Array.isArray(data.applications)) {
const AppData = data.applications;
delete data.applications;
data = [data, ...AppData];
}
return processData(data, remediation, template, summary);
}
async function readInputFromStdin() {

@@ -266,0 +277,0 @@ return new Promise((resolve, reject) => {

2

package.json

@@ -68,3 +68,3 @@ {

},
"version": "2.3.4"
"version": "2.3.5"
}

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc