We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7daca63 commit 3bd2879Copy full SHA for 3bd2879
src/parse-git-diff.ts
@@ -29,10 +29,8 @@ export default function parseGitDiff(
29
30
function parseFileChanges(ctx: Context): AnyFileChange[] {
31
const changedFiles: AnyFileChange[] = [];
32
- console.log('start');
33
while (!ctx.isEof()) {
34
const changed = parseFileChange(ctx);
35
- console.log({ changed });
36
if (!changed) {
37
break;
38
}
0 commit comments