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

cordova-common

Package Overview
Dependencies
Maintainers
7
Versions
2210
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cordova-common - npm Package Compare versions

Comparing version 2.0.0 to 2.0.1

2

package.json

@@ -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);

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