Socket
Socket
Sign inDemoInstall

xcode

Package Overview
Dependencies
Maintainers
13
Versions
1213
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

xcode - npm Package Compare versions

Comparing version 1.1.0 to 2.0.0

14

lib/parser/pbxproj.js

@@ -181,3 +181,3 @@ /**

var another = list[i][0];
returnObject = merge_obj(returnObject, another);
returnObject = Object.assign(returnObject, another);
}

@@ -1883,14 +1883,2 @@ return returnObject;

function merge_obj(obj, secondObj) {
if (!obj)
return secondObj;
for(var i in secondObj)
obj[i] = merge_obj(obj[i], secondObj[i]);
return obj;
}
peg$result = peg$startRuleFunction();

@@ -1897,0 +1885,0 @@

6

package.json

@@ -5,3 +5,3 @@ {

"description": "parser for xcodeproj/project.pbxproj files",
"version": "1.1.0",
"version": "2.0.0",
"main": "index.js",

@@ -12,6 +12,6 @@ "repository": {

"engines": {
"node": ">=0.6.7"
"node": ">=6.0.0"
},
"dependencies": {
"simple-plist": "^0.2.1",
"simple-plist": "^1.0.0",
"uuid": "^3.3.2"

@@ -18,0 +18,0 @@ },

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

### 2.0.0 (Jan 15, 2019)
* Updated to use ECMAScript 2015 Object.assign. ([#14](https://github.com/apache/cordova-node-xcode/pull/14))
* fix: simple-plist@1 update in dependencies ([#30](https://github.com/apache/cordova-node-xcode/pull/30))
* drop support for Node.js pre-6.0 [#29](https://github.com/apache/cordova-node-xcode/pull/29)
### 1.1.0 (Dec 19, 2018)

@@ -25,0 +30,0 @@ * feat: omit objects with empty values ([#24](https://github.com/apache/cordova-node-xcode/pull/24))

Sorry, the diff of this file is not supported yet

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