cordova-common
Advanced tools
Comparing version 2.0.0 to 2.0.1
@@ -6,3 +6,3 @@ { | ||
"license": "Apache-2.0", | ||
"version": "2.0.0", | ||
"version": "2.0.1", | ||
"repository": { | ||
@@ -9,0 +9,0 @@ "type": "git", |
@@ -23,2 +23,5 @@ <!-- | ||
### 2.0.1 (Mar 09, 2017) | ||
* [CB-12557](https://issues.apache.org/jira/browse/CB-12557) add both stdout and stderr properties to the error object passed to superspawn reject handler. | ||
### 2.0.0 (Jan 17, 2017) | ||
@@ -25,0 +28,0 @@ * [CB-8978](https://issues.apache.org/jira/browse/CB-8978) Add `resource-file` parsing to `config.xml` |
@@ -170,2 +170,8 @@ /** | ||
var err = new Error(errMsg); | ||
if (capturedErr) { | ||
err.stderr = capturedErr; | ||
} | ||
if (capturedOut) { | ||
err.stdout = capturedOut; | ||
} | ||
err.code = code; | ||
@@ -172,0 +178,0 @@ d.reject(err); |
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
168950
3646
2