cordova-common
Advanced tools
Comparing version 2.0.1 to 2.0.2
@@ -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')); |
@@ -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, |
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
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
170168
3659