0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-12-16 21:56:25 -05:00
verdaccio/scripts/contributors-update.ts

40 lines
992 B
TypeScript
Raw Normal View History

2022-02-26 10:34:36 -05:00
import contributors from '@dianmora/contributors';
import fs from 'fs/promises';
import path from 'path';
const token = process.env.TOKEN;
const excludebots = [
'verdacciobot',
'dependabot-preview[bot]',
'dependabot[bot]',
'64b2b6d12bfe4baae7dad3d01',
'greenkeeper[bot]',
'snyk-bot',
'allcontributors[bot]',
'renovate[bot]',
'undefined',
'renovate-bot',
];
(async () => {
try {
// Awesome script made by https://github.com/dianmorales
const result = await contributors({
2022-02-26 10:34:36 -05:00
token,
organization: 'verdaccio',
excludebots,
allowFork: false,
allowPrivateRepo: false,
});
const pathContributorsFile = path.join(
__dirname,
'../packages/tools/docusaurus-plugin-contributors/src/contributors.json'
);
await fs.writeFile(pathContributorsFile, JSON.stringify(result, null, 4));
} catch (err) {
// eslint-disable-next-line no-console
console.error('error on update', err);
process.exit(1);
}
})();