simple-git
Advanced tools
Comparing version 1.33.1 to 1.34.0
{ | ||
"name": "simple-git", | ||
"description": "Simple GIT interface for node.js", | ||
"version": "1.33.1", | ||
"version": "1.34.0", | ||
"author": "Steve King <steve@mydev.co>", | ||
@@ -6,0 +6,0 @@ "contributors": [ |
@@ -867,3 +867,3 @@ (function () { | ||
var fileUpdateRegex = /^\s*(.+)\s\|\s(\d+)\s([+\-]+)/; | ||
var fileUpdateRegex = /^\s*(.+?)\s+\|\s+(\d+)\s([+\-]+)/; | ||
for (var lines = pull.split('\n'), i = 0, l = lines.length; i < l; i++) { | ||
@@ -870,0 +870,0 @@ var update = fileUpdateRegex.exec(lines[i]); |
@@ -779,2 +779,48 @@ | ||
exports.pull = { | ||
setUp: function (done) { | ||
Instance(); | ||
done(); | ||
}, | ||
'pulls with spaces in names': function (test) { | ||
git.pull(function (err, result) { | ||
test.same(['pull'], theCommandRun()); | ||
test.same(result.files.length, 21); | ||
test.done(); | ||
}); | ||
closeWith('\n\ | ||
From git.kellpro.net:apps/templates\n\ | ||
* branch release/0.33.0 -> FETCH_HEAD\n\ | ||
Updating 1c6e99e..2a5dc63\n\ | ||
Fast-forward\n\ | ||
accounting_core.kjs | 61 +++++++++++-----------\n\ | ||
accounting_core_report.kjs | 45 +++++++++-------\n\ | ||
ap.invoice.kjs | 2 +-\n\ | ||
ar.deposit.kjs | 6 +--\n\ | ||
ar.invoice_detail.kjs | 16 +++---\n\ | ||
ar.receipt.kjs | 10 +++-\n\ | ||
gl.bank_statement.kjs | 6 +++\n\ | ||
gl.kjs | 106 ++++++++++++++++++++++++++------------\n\ | ||
kis.call.kjs | 2 +\n\ | ||
kis.call_stats_report.kjs | 289 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\ | ||
kis.edit_recurring.kjs | 8 +--\n\ | ||
kis.kdr_logs.kjs | 8 ---\n\ | ||
kpo.batch_pay.kjs | 19 ++++---\n\ | ||
kpo.fiscal_year.kjs | 93 +++++++++++++++++++++++++++++----\n\ | ||
kpo.kjs | 2 +-\n\ | ||
kpo.payment.kjs | 3 ++\n\ | ||
kpo.po_adjustment.kjs | 82 +++++++++++++++++++++++------\n\ | ||
kpo.purchase_order.kjs | 12 +++--\n\ | ||
kpo.reports.kjs | 79 +++++++++++++++-------------\n\ | ||
kpo.warrant.kjs | 17 +++---\n\ | ||
time_tracking.schedule.kjs | 342 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----------------------------------------------------------\n\ | ||
21 files changed, 856 insertions(+), 352 deletions(-)\n\ | ||
create mode 100644 kis.call_stats_report.kjs\n\ | ||
'); | ||
} | ||
}; | ||
exports.show = { | ||
@@ -781,0 +827,0 @@ setUp: function (done) { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
87581
2065
3