cross-spawn
Advanced tools
Comparing version 2.1.5 to 2.2.0
{ | ||
"name": "cross-spawn", | ||
"version": "2.1.5", | ||
"version": "2.2.0", | ||
"description": "Cross platform child_process#spawn and child_process#spawnSync", | ||
@@ -34,3 +34,3 @@ "main": "index.js", | ||
"dependencies": { | ||
"cross-spawn-async": "^2.0.0", | ||
"cross-spawn-async": "^2.2.0", | ||
"spawn-sync": "^1.0.15" | ||
@@ -40,3 +40,3 @@ }, | ||
"expect.js": "^0.3.0", | ||
"glob": "^6.0.3", | ||
"glob": "^7.0.0", | ||
"mkdirp": "^0.5.1", | ||
@@ -43,0 +43,0 @@ "mocha": "^2.2.5", |
@@ -9,3 +9,3 @@ # cross-spawn | ||
[travis-url]:https://travis-ci.org/IndigoUnited/node-cross-spawn | ||
[travis-image]:http://img.shields.io/travis/IndigoUnited/node-cross-spawn.svg | ||
[travis-image]:http://img.shields.io/travis/IndigoUnited/node-cross-spawn/master.svg | ||
[appveyor-url]:https://ci.appveyor.com/project/satazor/node-cross-spawn | ||
@@ -49,6 +49,6 @@ [appveyor-image]:https://img.shields.io/appveyor/ci/satazor/node-cross-spawn.svg | ||
// Spawn NPM asynchronously | ||
var process = spawn('npm', ['list', '-g', '-depth' '0'], { stdio: 'inherit' }); | ||
var process = spawn('npm', ['list', '-g', '-depth', '0'], { stdio: 'inherit' }); | ||
// Spawn NPM synchronously | ||
var results = spawn.sync('npm', ['list', '-g', '-depth' '0'], { stdio: 'inherit' }); | ||
var results = spawn.sync('npm', ['list', '-g', '-depth', '0'], { stdio: 'inherit' }); | ||
``` | ||
@@ -55,0 +55,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
8511
Updatedcross-spawn-async@^2.2.0