Skip to content

Commit 14707bc

Browse files
authored
Remove debug comments
When testing this, I used a template array (html, json, etc). I left that comment to remind me to replace it with the real one, but forgot to remove the comment
1 parent f2ebf8b commit 14707bc

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

bin/cli.mjs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,11 @@ import {
2929
cancel,
3030
} from '@clack/prompts';
3131

32-
// Derive available options dynamically from imported modules
33-
const availableGenerators = Object.keys(publicGenerators); // e.g. ['html', 'json']
32+
const availableGenerators = Object.keys(publicGenerators); // Generators
3433
const availableRules = Object.keys(rules); // Linter rule names
3534
const availableReporters = Object.keys(reporters); // Reporter implementations
3635

37-
// Initialize Commander.js
36+
// Create the program
3837
const program = new Command();
3938
program
4039
.name('api-docs-tooling')

0 commit comments

Comments
 (0)