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
2208
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.1 to 2.0.2

5

package.json

@@ -6,3 +6,3 @@ {

"license": "Apache-2.0",
"version": "2.0.1",
"version": "2.0.2",
"repository": {

@@ -18,4 +18,5 @@ "type": "git",

"engines": {
"node": ">=0.9.9"
"node": ">=4.0.0"
},
"engineStrict": true,
"scripts": {

@@ -22,0 +23,0 @@ "test": "npm run jshint && npm run jasmine",

@@ -23,2 +23,9 @@ <!--

### 2.0.2 (Apr 14, 2017)
* [CB-11233](https://issues.apache.org/jira/browse/CB-11233) - Support installing frameworks into 'Embedded Binaries' section of the Xcode project
* [CB-10438](https://issues.apache.org/jira/browse/CB-10438) - Install correct dependency version. Removed shell.remove, added pkg.json to dependency tests 1-3, and updated install.js (.replace) to fix tests in uninstall.spec.js and update to workw with jasmine 2.0
* [CB-11120](https://issues.apache.org/jira/browse/CB-11120) - Allow short/display name in config.xml
* [CB-11346](https://issues.apache.org/jira/browse/CB-11346) - Remove known platforms check
* [CB-11977](https://issues.apache.org/jira/browse/CB-11977) - updated engines and enginescript for common, fetch, and serve
### 2.0.1 (Mar 09, 2017)

@@ -25,0 +32,0 @@ * [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.

@@ -119,2 +119,12 @@ /**

},
shortName: function() {
return this.doc.find('name').attrib['short'] || this.name();
},
setShortName: function(shortname) {
var el = findOrCreate(this.doc, 'name');
if (!el.text) {
el.text = shortname;
}
el.attrib['short'] = shortname;
},
description: function() {

@@ -121,0 +131,0 @@ return getNodeTextSafe(this.doc.find('description'));

1

src/events.js

@@ -23,2 +23,3 @@ /**

var INSTANCE = new EventEmitter();
INSTANCE.setMaxListeners(20);
var EVENTS_RECEIVER;

@@ -25,0 +26,0 @@

@@ -111,2 +111,3 @@ /**

{ id : tag.attrib.id
, version: tag.attrib.version || ''
, url : tag.attrib.url || ''

@@ -322,2 +323,3 @@ , subdir : tag.attrib.subdir || ''

custom: isStrTrue(el.attrib.custom),
embed: isStrTrue(el.attrib.embed),
src: el.attrib.src,

@@ -324,0 +326,0 @@ spec: el.attrib.spec,

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