-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgenerate_readme.ts
75 lines (59 loc) · 1.85 KB
/
generate_readme.ts
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#!/usr/bin/env node
import { promises as fs } from "fs";
import { name, description } from "./package.json";
const README_FILE = "./README.md";
const SNIPPETS_FOLDER = "./snippets";
enum Headings {
H1 = 1,
H2 = 2,
H3 = 3
}
function heading(s: string, level: keyof typeof Headings) {
const prefix = new Array(Headings[level]).fill("#");
return `${prefix.toString().replace(/,/g, "")} ${s}`;
}
function link(s: string, href: string) {
return `[${s}](${href})`;
}
function li(s: string) {
return ` - ${s}`;
}
function prettify(s: string) {
const text = [...s.replace(/[^a-zA-Z0-9]+/g, " ")];
text[0] = text[0].toUpperCase();
return text.join("");
}
async function main() {
let readme = ``;
function add(s: string) {
readme = readme.concat(s);
}
function line() {
readme = readme.concat("\n");
}
add(heading(prettify(name), "H1"));
line();
add(description);
line();
add(heading("Snippets", "H2"));
line();
const snippetFolders = await fs.readdir(SNIPPETS_FOLDER);
for (const snippetFolderName of snippetFolders) {
const snippetFolderPath = `${SNIPPETS_FOLDER}/${snippetFolderName}`;
const stat = await fs.stat(snippetFolderPath);
if (stat.isFile()) {
console.error(`Found file ${snippetFolderName} inside snippets folder. All snippets should be placed inside the related folder (create one if no relevant folder exists).`);
continue;
}
add(heading(prettify(snippetFolderName), "H3"));
line();
const snippets = await fs.readdir(snippetFolderPath);
for (const snippet of snippets) {
const snippetPath = `${snippetFolderPath}/${snippet}`;
add(li(link(snippet, snippetPath)));
line();
}
}
await fs.writeFile(README_FILE, readme);
}
main();