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 4bb7ca1 commit 5b6bd08Copy full SHA for 5b6bd08
scripts/generate-authors.ts
@@ -16,7 +16,7 @@ const packageRootPath = path.resolve(__dirname, '..');
16
function getAuthorsGitLog(packagePath: string): string[] {
17
return execFileSync(
18
'git',
19
- ['log', '--reverse', '--format=%aN <%aE>', '--use-mailmap', '--', packagePath],
+ ['log', '--reverse', '--format=%aN <%aE>', '--use-mailmap', '--find-renames', '--find-copies', '--follow', '--', packagePath],
20
{ cwd: packageRootPath }
21
).toString().trim().split('\n');
22
}
0 commit comments