The doc-kit command-line interface. Every option that maps to
configuration can also live in a configuration file;
when both are present, CLI flags win (rule of specifity).
npx @doc-kit/cli [command] [options]
One option applies to every command:
--log-level <level>stringdebug,info,warn,error, orfatal. Default:'info'.
npx @doc-kit/cli generate [options]
Runs the generators and writes their output. Requires a target and an
input, from flags or the configuration file.
--config-file <path>stringUse a specific configuration file instead of searching.-i, --input <patterns...>string[]Input file patterns (glob).-t, --target <name...>string[]Generator name(s), or import specifiers for custom generators.--ignore <patterns...>string[]Input patterns to skip.-o, --output <dir>stringThe output directory.-v, --version <semver>stringThe version of the project being documented.-c, --changelog <url>stringChangelog URL or path (release history for version selectors).--git-ref <ref>stringGit ref used in source links.--index <url>stringindex.mdURL or path.--minifybooleanMinify the output.--type-map <url>stringType map URL or path (custom type-name → URL links).-p, --threads <n>numberWorker threads to use (minimum 1).--chunk-size <n>numberItems per worker thread (minimum 1).