Socket
Socket
Sign inDemoInstall

simple-git

Package Overview
Dependencies
Maintainers
1
Versions
259
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

simple-git - npm Package Compare versions

Comparing version 1.17.0 to 1.18.0

2

package.json
{
"name": "simple-git",
"description": "Simple GIT interface for node.js",
"version": "1.17.0",
"version": "1.18.0",
"author": "Steve King <steve@mydev.co>",

@@ -6,0 +6,0 @@ "contributors": [

@@ -757,2 +757,3 @@ (function () {

var created = [];
var conflicted = [];

@@ -778,2 +779,5 @@ var whitespace = /\s+/;

break;
case "UU":
conflicted.push(line.join());
break;
}

@@ -786,3 +790,4 @@ }

modified: modified,
created: created
created: created,
conflicted: conflicted
};

@@ -789,0 +794,0 @@ };

@@ -434,2 +434,3 @@

test.equals(0, status.not_added, 'No untracked files');
test.equals(0, status.conflicted, 'No conflicted files');
test.done();

@@ -448,2 +449,3 @@ });

test.equals(1, status.not_added.length, 'No un-tracked files');
test.equals(1, status.conflicted.length, 'No conflicted files');
test.done();

@@ -459,2 +461,3 @@ });

?? test/ \n\
UU test.js\n\
');

@@ -461,0 +464,0 @@ }

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