Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

depsync

Package Overview
Dependencies
Maintainers
1
Versions
44
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

depsync - npm Package Compare versions

Comparing version 1.1.7 to 1.1.8

2

package.json
{
"name": "depsync",
"version": "1.1.7",
"version": "1.1.8",
"author": "Dom Chen",

@@ -5,0 +5,0 @@ "homepage": "http://www.idom.me/",

@@ -147,13 +147,15 @@ //////////////////////////////////////////////////////////////////////////////////////

let options = {
shell: true,
cwd: dir,
env: process.env
}
if (quiet) {
options.stderr = "inherit";
} else {
if (!quiet) {
options.stdio = "inherit";
}
try {
childProcess.execSync(cmd, options);
} catch (error) {
let result = childProcess.spawnSync(cmd, options);
if (result.status !== 0) {
if (quiet) {
error(result.stderr);
}
process.exit(1);

@@ -160,0 +162,0 @@ }

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