-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathgenerate-md-contributors.js
59 lines (53 loc) · 1.7 KB
/
generate-md-contributors.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import chalk from 'chalk';
import m from 'mdast-builder';
import {headingRange} from 'mdast-util-heading-range';
import {readFileSync, writeFileSync} from 'node:fs';
import {createRequire} from 'node:module';
import remarkGfm from 'remark-gfm';
import remarkParse from 'remark-parse';
import remarkStringify from 'remark-stringify';
import {unified} from 'unified';
import {getContributors} from './utils/getContributors.js';
import {writeContributorsAvatar} from './utils/writeContributorsAvatar.js';
const require = createRequire(import.meta.url);
const md = readFileSync(require.resolve('../README.md'), 'utf8');
(async () => {
await writeContributorsAvatar();
const file = await unified()
.use(remarkParse)
.use(remarkGfm)
.use(() => async (tree, file, next) => {
const contributors = await getContributors();
headingRange(tree, 'Contributors', (start, nodes, end) => [
start,
m.table('center', [
m.tableRow(contributors.map(c => m.tableCell(m.text(c.login)))),
m.tableRow(
contributors.map(c =>
m.tableCell(
m.link(
c.html_url,
c.login,
m.image(
`./static/contributors/${c.login}.svg`,
c.login,
c.login
)
)
)
)
)
]),
end
]);
next();
})
.use(remarkStringify)
.process(md);
const result = String(file);
writeFileSync(require.resolve('../README.md'), result, 'utf8');
console.log(
chalk.green('📄 Contributors added:'),
chalk.bgGreen(`${require.resolve('../README.md')}`)
);
})();