Skip to content

Commit 9f19e82

Browse files
authored
feat: introduced CLI mode to the parser (#36)
* feat: introduced CLI mode to the parser * fix: top level await * chore: remove .gitkeep * refactor: uses loaders, parsers, and generators * refactor: multiple target mode * refactor: import order changed * chore: package name added * refactor: code review
1 parent e0b6d10 commit 9f19e82

File tree

7 files changed

+66
-5
lines changed

7 files changed

+66
-5
lines changed

bin/.gitkeep

-1
This file was deleted.

bin/cli.mjs

+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
#!/usr/bin/env node
2+
3+
import { argv } from 'node:process';
4+
import { resolve } from 'node:path';
5+
6+
import { Command, Option } from 'commander';
7+
8+
import createGenerator from '../src/generators.mjs';
9+
import createLoader from '../src/loader.mjs';
10+
import createParser from '../src/parser.mjs';
11+
import generators from '../src/generators/index.mjs';
12+
13+
const program = new Command();
14+
15+
program
16+
.name('api-docs-tooling')
17+
.description('CLI tool to generate API documentation of a Node.js project.')
18+
.requiredOption(
19+
'-i, --input <patterns...>',
20+
'Specify input file patterns using glob syntax'
21+
)
22+
.requiredOption('-o, --output <path>', 'Specify the output directory path')
23+
.addOption(
24+
new Option(
25+
'-t, --target [mode...]',
26+
'Set the processing target mode'
27+
).choices(Object.keys(generators))
28+
)
29+
.parse(argv);
30+
31+
/**
32+
* @typedef {keyof generators} Target A list of the available generator names.
33+
*
34+
* @typedef {Object} Options
35+
* @property {Array<string>|string} input Specifies the glob/path for input files.
36+
* @property {string} output Specifies the directory where output files will be saved.
37+
* @property {Target} target Specifies the generator target mode.
38+
*
39+
* @name ProgramOptions
40+
* @type {Options}
41+
* @description The return type for values sent to the program from the CLI.
42+
*/
43+
const { input, output, target } = program.opts();
44+
45+
const { loadFiles } = createLoader();
46+
const { parseApiDocs } = createParser();
47+
48+
const apiDocFiles = loadFiles(input);
49+
50+
const parsedApiDocs = await parseApiDocs(apiDocFiles);
51+
52+
const { runGenerators } = createGenerator(parsedApiDocs);
53+
54+
await runGenerators({
55+
generators: target,
56+
output: resolve(output),
57+
});

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
{
2+
"name": "@node-core/api-docs-tooling",
23
"scripts": {
34
"lint": "eslint .",
45
"format": "prettier --write .",
56
"prepare": "husky"
67
},
8+
"bin": {
9+
"api-docs-tooling": "./bin/cli.mjs"
10+
},
711
"devDependencies": {
812
"@eslint/js": "^9.8.0",
913
"@types/node": "^20.14.11",
@@ -16,6 +20,7 @@
1620
},
1721
"dependencies": {
1822
"github-slugger": "^2.0.0",
23+
"commander": "^12.1.0",
1924
"glob": "^11.0.0",
2025
"remark": "^15.0.1",
2126
"remark-gfm": "^4.0.0",

src/generators/index.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
import jsonSimple from './json-simple/index.mjs';
44
import legacyHtml from './legacy-html/index.mjs';
55

6-
export default { jsonSimple, legacyHtml };
6+
export default { 'json-simple': jsonSimple, 'legacy-html': legacyHtml };

src/generators/json-simple/index.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import { join } from 'node:path';
1515
* @type {import('../types.d.ts').GeneratorMetadata<Input, string>}
1616
*/
1717
export default {
18-
name: 'jsonSimple',
18+
name: 'json-simple',
1919

2020
version: '1.0.0',
2121

src/generators/legacy-html/index.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* @type {import('../types.d.ts').GeneratorMetadata<Input, void>}
1313
*/
1414
export default {
15-
name: 'legacyHtml',
15+
name: 'legacy-html',
1616

1717
version: '1.0.0',
1818

0 commit comments

Comments
 (0)