ant-design/scripts/generate-authors.ts

46 lines
961 B
TypeScript
Raw Permalink Normal View History

2023-04-28 15:26:09 +08:00
import fs from 'fs';
import path from 'path';
2023-11-02 15:10:56 +08:00
import remove from 'lodash/remove';
import sortBy from 'lodash/sortBy';
import unionBy from 'lodash/unionBy';
2023-04-28 15:26:09 +08:00
import simpleGit from 'simple-git';
const cwd = process.cwd();
const git = simpleGit(cwd);
const excludes = [
'users.noreply.github.com',
'gitter.im',
'.local',
'alibaba-inc.com',
'alipay.com',
'taobao.com',
2021-02-28 14:03:31 +08:00
'ant-design-bot',
];
async function execute() {
let { all } = await git.log();
2023-11-02 15:10:56 +08:00
all = remove(all, ({ author_email: email }) => {
for (let i = 0; i < excludes.length; i++) {
const item = excludes[i];
if (email.includes(item)) {
return false;
}
}
return true;
});
2023-11-02 15:10:56 +08:00
all = sortBy(unionBy(all, 'author_email'), 'author_name');
fs.writeFileSync(
path.join(cwd, 'contributors.json'),
JSON.stringify(
Array.from(new Set<string>(all.map((authorItem) => authorItem.author_name))),
null,
2,
),
);
}
execute();