cross-spawn
Advanced tools
Comparing version 6.0.2 to 6.0.3
@@ -5,2 +5,7 @@ # Change Log | ||
<a name="6.0.3"></a> | ||
## [6.0.3](https://github.com/moxystudio/node-cross-spawn/compare/v6.0.2...v6.0.3) (2018-01-23) | ||
<a name="6.0.2"></a> | ||
@@ -23,3 +28,3 @@ ## [6.0.2](https://github.com/moxystudio/node-cross-spawn/compare/v6.0.1...v6.0.2) (2018-01-23) | ||
* fix certain arguments not being correctly escaped or causing batch syntax error ([900cf10](https://github.com/moxystudio/node-cross-spawn/commit/900cf10)), closes [#82](https://github.com/moxystudio/node-cross-spawn/issues/82) [#51](https://github.com/moxystudio/node-cross-spawn/issues/51) | ||
* fix commands as posix unix relatixe paths not working correctly ([900cf10](https://github.com/moxystudio/node-cross-spawn/commit/900cf10)) | ||
* fix commands as posix relatixe paths not working correctly, e.g.: `./my-command` ([900cf10](https://github.com/moxystudio/node-cross-spawn/commit/900cf10)) | ||
* fix `options` argument being mutated ([900cf10](https://github.com/moxystudio/node-cross-spawn/commit/900cf10)) | ||
@@ -43,3 +48,3 @@ * fix commands resolution when PATH was actually Path ([900cf10](https://github.com/moxystudio/node-cross-spawn/commit/900cf10)) | ||
* remove support for older nodejs versions, only node >= 4 is supported | ||
* remove support for older nodejs versions, only `node >= 4` is supported | ||
@@ -46,0 +51,0 @@ |
{ | ||
"name": "cross-spawn", | ||
"version": "6.0.2", | ||
"version": "6.0.3", | ||
"description": "Cross platform child_process#spawn and child_process#spawnSync", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
# cross-spawn | ||
[![NPM version][npm-image]][npm-url] [![Downloads][downloads-image]][npm-url] [![Build Status][travis-image]][travis-url] [![Build status][appveyor-image]][appveyor-url] [![Dependency status][david-dm-image]][david-dm-url] [![Dev Dependency status][david-dm-dev-image]][david-dm-dev-url] [![Greenkeeper badge][greenkeeper-image]][greenkeeper-url] | ||
[![NPM version][npm-image]][npm-url] [![Downloads][downloads-image]][npm-url] [![Build Status][travis-image]][travis-url] [![Build status][appveyor-image]][appveyor-url] [![Coverage Status][codecov-image]][codecov-url] [![Dependency status][david-dm-image]][david-dm-url] [![Dev Dependency status][david-dm-dev-image]][david-dm-dev-url] [![Greenkeeper badge][greenkeeper-image]][greenkeeper-url] | ||
@@ -12,2 +12,4 @@ [npm-url]:https://npmjs.org/package/cross-spawn | ||
[appveyor-image]:https://img.shields.io/appveyor/ci/satazor/node-cross-spawn/master.svg | ||
[codecov-url]:https://codecov.io/gh/moxystudio/node-cross-spawn | ||
[codecov-image]:https://img.shields.io/codecov/c/github/moxystudio/node-cross-spawn/master.svg | ||
[david-dm-url]:https://david-dm.org/moxystudio/node-cross-spawn | ||
@@ -49,9 +51,9 @@ [david-dm-image]:https://img.shields.io/david/moxystudio/node-cross-spawn.svg | ||
```js | ||
var spawn = require('cross-spawn'); | ||
const spawn = require('cross-spawn'); | ||
// Spawn NPM asynchronously | ||
var child = spawn('npm', ['list', '-g', '-depth', '0'], { stdio: 'inherit' }); | ||
const child = spawn('npm', ['list', '-g', '-depth', '0'], { stdio: 'inherit' }); | ||
// Spawn NPM synchronously | ||
var results = spawn.sync('npm', ['list', '-g', '-depth', '0'], { stdio: 'inherit' }); | ||
const result = spawn.sync('npm', ['list', '-g', '-depth', '0'], { stdio: 'inherit' }); | ||
``` | ||
@@ -58,0 +60,0 @@ |
Sorry, the diff of this file is not supported yet
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
19478
95