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

dozerjs

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dozerjs - npm Package Compare versions

Comparing version 0.1.7 to 0.1.8

14

lib/process_manifest.js

@@ -82,5 +82,11 @@ var output = require('./output.js');

if (args.length) {
proc = spawn(command, [args], {
cwd: buildDir
});
if (command === 'npm') {
proc = spawn(command, args.concat('--color', 'always'), {
cwd: buildDir
});
} else {
proc = spawn(command, args, {
cwd: buildDir
});
}
} else {

@@ -111,3 +117,3 @@ proc = spawn(command, [], {

stderr.on("line", function (line) {
output('error', ' '+line);
output('success', ' '+line);
});

@@ -114,0 +120,0 @@

{
"name": "dozerjs",
"version": "0.1.7",
"version": "0.1.8",
"description": "NPM for Managing DozerJS",

@@ -5,0 +5,0 @@ "repository": {

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