New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

dvpntjs-scripts

Package Overview
Dependencies
Maintainers
2
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dvpntjs-scripts - npm Package Compare versions

Comparing version 2.2.1 to 2.2.2

4

lib/exec.js

@@ -6,3 +6,5 @@ const {execSync} = require('child_process');

try {
return execSync(cmd, options).toString().slice(0, -1);
const output = execSync(cmd, options);
return (output || '').toString().slice(0, -1);
} catch (err) {

@@ -9,0 +11,0 @@ logger.error('`%s` failed with code %d', cmd, err.status);

{
"name": "dvpntjs-scripts",
"version": "2.2.1",
"version": "2.2.2",
"description": "dvpnt node helper scripts",

@@ -5,0 +5,0 @@ "license": "MIT",

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc