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
|`version`|`string`| The version of the project being documented (coerced to semver). |`process.version`|
52
-
|`changelog`|`string \| URL \| Array`| Release history used to build version selectors. A URL or path to a `CHANGELOG.md` to parse, or a pre-parsed array — `[]` disables versioning (and the network fetch). | The Node.js `CHANGELOG.md`|
53
-
|`index`|`string \| URL \| Array`| An `index.md` listing section titles, or a pre-parsed array. | — |
54
-
|`baseURL`|`string \| URL`| The public URL of the published site; used wherever absolute links are needed (sitemaps, `llms.txt`, social metadata). |`'https://nodejs.org/docs'`|
55
-
|`repository`|`string`| GitHub repository in `owner/repo` form, used for source and edit links. |`'nodejs/node'`|
56
-
|`ref`|`string`| Git ref (branch, tag, or SHA) used in source links. |`'HEAD'`|
57
-
|`minify`|`boolean`| Minify the output, in whatever form it takes. |`true`|
58
-
|`pathsToCopy`|`Array<string \| Object>`| Extra files or directories copied into the output. A string copies to `output/<basename>`; a `{ source: destination }` object controls the target path. Missing paths are skipped. |`['assets', 'public', 'static']`|
59
-
60
-
> The defaults still reflect doc-kit's Node.js origins: `changelog`,
61
-
> `repository`, and `baseURL` point at the Node.js project unless you set
62
-
> them. `doc-kit bootstrap` writes a configuration that overrides the ones
|`version`|`string`| The version of the project being documented (coerced to semver). |`process.version`|
81
+
|`project`|`string`| The name of the project being documented, used in titles, logos, and templated text. | The `name` in your `package.json`|
82
+
|`changelog`|`string \| URL \| Array`| Release history used to build version selectors. A URL or path to a `CHANGELOG.md` to parse, or a pre-parsed array. |`[]` (single-version output) |
83
+
|`index`|`string \| URL \| Array`| An `index.md` listing section titles, or a pre-parsed array. | — |
84
+
|`baseURL`|`string \| URL`| The public URL of the published site; used wherever absolute links are needed (sitemaps, `llms.txt`, social metadata). | — |
85
+
|`repository`|`string`| GitHub repository in `owner/repo` form, used for source and edit links; without one, repository-specific UI (like the GitHub link) is omitted. | — |
86
+
|`ref`|`string`| Git ref (branch, tag, or SHA) used in source links. |`'HEAD'`|
87
+
|`minify`|`boolean`| Minify the output, in whatever form it takes. |`true`|
88
+
|`pathsToCopy`|`Array<string \| Object>`| Extra files or directories copied into the output. A string copies to `output/<basename>`; a `{ source: destination }` object controls the target path. Missing paths are skipped. |`['assets', 'public', 'static']`|
64
89
65
90
## Execution options
66
91
@@ -79,7 +104,7 @@ Each generator documents its own options on its reference page — see the
0 commit comments