Skip to content

Commit 27bf2e3

Browse files
author
Simon Renoult
committed
fix: increase buffer size to allow parsing of bigger projects
1 parent acea6b3 commit 27bf2e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/churn.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ function createMapOfChurnsPerFile(
6060
}
6161

6262
function executeGitLogCommand(gitLogCommand: string): string {
63-
return execSync(gitLogCommand, { encoding: "utf8" });
63+
return execSync(gitLogCommand, { encoding: "utf8", maxBuffer: 32_000_000 });
6464
}
6565

6666
function assertGitIsInstalled(): void {

0 commit comments

Comments
 (0)