Socket
Socket
Sign inDemoInstall

standard-engine

Package Overview
Dependencies
Maintainers
9
Versions
91
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

standard-engine - npm Package Compare versions

Comparing version 4.0.1 to 4.0.2

23

bin/cmd.js

@@ -45,3 +45,4 @@ module.exports = Cli

console.error(opts.cmd + ': ' + opts.formatter)
process.exit(1)
process.exitCode = 1
return
}

@@ -51,3 +52,4 @@ if (typeof opts.formatter !== 'object' ||

console.error(opts.cmd + ': Invalid formatter API')
process.exit(0)
process.exitCode = 0
return
}

@@ -93,3 +95,4 @@ }

}), opts.cmd, fmtMsg)
process.exit(0)
process.exitCode = 0
return
}

@@ -99,3 +102,4 @@

console.log(opts.version)
process.exit(0)
process.exitCode = 0
return
}

@@ -132,3 +136,6 @@

if (err) return onError(err)
if (!result.errorCount && !result.warningCount) process.exit(0)
if (!result.errorCount && !result.warningCount) {
process.exitCode = 0
return
}

@@ -151,3 +158,4 @@ console.error(

process.exit(result.errorCount ? 1 : 0)
process.exitCode = result.errorCount ? 1 : 0
return
}

@@ -162,3 +170,4 @@

)
process.exit(1)
process.exitCode = 1
return
}

@@ -165,0 +174,0 @@

{
"name": "standard-engine",
"description": "Wrap your standards in a tortilla and cover it in special sauce.",
"version": "4.0.1",
"version": "4.0.2",
"author": "Dan Flettre <flettre@gmail.com> (http://twitter.com/flettre/)",

@@ -6,0 +6,0 @@ "bugs": {

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