You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+11-4
Original file line number
Diff line number
Diff line change
@@ -36,10 +36,17 @@ CLI tool to generate API documentation of a Node.js project.
36
36
37
37
Options:
38
38
-i, --input [patterns...] Specify input file patterns using glob syntax
39
-
--ignore [patterns...] Specify files to be ignored from the input using glob syntax
39
+
--ignore [patterns...] Specify which input files to ignore using glob syntax
40
40
-o, --output <path> Specify the relative or absolute output directory
41
-
-v, --version <semver> Specify the target version of Node.js, semver compliant (default: "v22.6.0")
42
-
-c, --changelog <url> Specify the path (file: or https://) to the CHANGELOG.md file (default: "https://raw.githubusercontent.com/nodejs/node/HEAD/CHANGELOG.md")
43
-
-t, --target [mode...] Set the processing target modes (choices: "json-simple", "legacy-html", "legacy-html-all", "man-page", "legacy-json", "legacy-json-all", "addon-verify", "api-links", "orama-db")
41
+
-v, --version <semver> Specify the target version of Node.js, semver compliant (default: "v22.11.0")
42
+
-c, --changelog <url> Specify the path (file: or https://) to the CHANGELOG.md file (default:
Copy file name to clipboardExpand all lines: src/generators.mjs
+4-6
Original file line number
Diff line number
Diff line change
@@ -13,8 +13,8 @@ const availableGenerators = {
13
13
};
14
14
15
15
/**
16
-
* @typedef {{ ast: import('./generators/types.d.ts').GeneratorMetadata<ApiDocMetadataEntry, ApiDocMetadataEntry>}} AstGenerator The AST "generator" is a facade for the AST tree and it isn't really a generator
17
-
* @typedef {import('./generators/types.d.ts').AvailableGenerators & AstGenerator} AllGenerators A complete set of the available generators, including the AST one
16
+
* @typedef {{ ast: GeneratorMetadata<ApiDocMetadataEntry, ApiDocMetadataEntry>}} AstGenerator The AST "generator" is a facade for the AST tree and it isn't really a generator
17
+
* @typedef {AvailableGenerators & AstGenerator} AllGenerators A complete set of the available generators, including the AST one
0 commit comments