We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c2219f commit 7e67fffCopy full SHA for 7e67fff
lib/index.js
@@ -526,7 +526,8 @@ GitStats.prototype.ansiCalendar = function (options, callback) {
526
*/
527
GitStats.prototype.authors = function (options, callback) {
528
var repo = new Gry(options.repo);
529
- repo.exec("shortlog -s -n --all", function (err, stdout) {
+ debugger
530
+ repo.exec(`shortlog -s -n --all --since "${options.start.toString()}" --until "${options.end.toString()}"`, function (err, stdout) {
531
if (err) { return callback(err); }
532
var lines = stdout.split("\n");
533
var pieData = stdout.split("\n").map(function (c) {
0 commit comments