forked from intuit/auto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerate-command-docs.js
executable file
·119 lines (100 loc) · 2.95 KB
/
generate-command-docs.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
#!/usr/bin/env node
const fs = require("fs");
const path = require("path");
const { camelCase } = require("change-case");
const endent = require("endent").default;
const glob = require("fast-glob");
const docs = require("command-line-docs").default;
const { defaultLabels } = require("../packages/core/dist/semver");
const { commands } = require("../packages/cli/dist/parse-args");
try {
fs.mkdirSync(path.join(__dirname, "./pages/docs/generated"));
} catch (error) {}
commands.forEach((command) => {
const [title, ...docsForCommand] = docs(command)
.replace(/{green \$} /g, "")
.replace(/```sh\n/g, "```bash\n")
.split("\n");
const frontMatter = endent`
---
title: ${title.replace("# ", "")}
---
`.replace(/`/g, "\\`");
const lines = [frontMatter, ...docsForCommand];
const configOptions = (command.options || []).filter(
(option) => option.config
);
const extra = path.join(__dirname, `./pages/docs/extras/${command.name}.md`);
if (configOptions.length) {
lines.push(endent`
## Configurable Options
You can configure some of the options for the \`${
command.name
}\` command in the \`.autorc\`.
${configOptions.map((o) => `- \`${o.name}\``).join("\n")}
**Example \`.autorc\`:**
\`\`\`json
{
"${command.name}": {
${configOptions
.map((o) => {
let value;
if (o.defaultValue) {
value =
(o.type === String && `"${o.defaultValue}"`) ||
o.defaultValue;
} else {
value =
(o.type === String && '"string"') ||
(o.type === Boolean && true) ||
(o.type === Number && 123);
}
return `"${camelCase(o.name)}": ${value}`;
})
.join(",\n")}
}
}
\`\`\`
`);
}
if (fs.existsSync(extra)) {
lines.push(fs.readFileSync(extra, "utf8"));
}
fs.writeFileSync(
path.join(__dirname, `./pages/docs/generated/${command.name}.mdx`),
lines.join("\n")
);
});
glob
.sync(path.join(__dirname, "../plugins/**/README.md"), {
ignore: "**/node_modules",
})
.forEach((readme) => {
console.log(readme);
const content = fs.readFileSync(readme, "utf8");
const [title, ...readmeDocs] = content.split("\n");
const frontMatter = endent`
---
title: ${title.replace("# ", "")}
---
`.replace(/`/g, "\\`");
const lines = [frontMatter, ...readmeDocs];
const dir = path.dirname(readme).split("/");
const name = dir[dir.length - 1];
fs.writeFileSync(
path.join(__dirname, `./pages/docs/generated/${name}.mdx`),
lines.join("\n")
);
});
fs.writeFileSync(
path.join(__dirname, "./pages/docs/generated/defaultLabelsRenderer.mdx"),
`---
title: "Default Labels"
layout: 'none'
---
Here is the default label configuration
\`\`\`json
${JSON.stringify(defaultLabels, null, 2)}
\`\`\`
`
);