Skip to content

Commit d316737

Browse files
fix: infer --guide-title (#1138)
## PR Checklist - [x] Addresses an existing open issue: fixes #1137 - [x] That issue was marked as [`status: accepting prs`](https://github.com/JoshuaKGoldberg/create-typescript-app/issues?q=is%3Aopen+is%3Aissue+label%3A%22status%3A+accepting+prs%22) - [x] Steps in [CONTRIBUTING.md](https://github.com/JoshuaKGoldberg/create-typescript-app/blob/main/.github/CONTRIBUTING.md) were taken ## Overview Fills in a missing `values['guide-title']`. Sigh.
1 parent 81a9f98 commit d316737

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

src/shared/options/readOptions.test.ts

+2
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ const emptyOptions = {
3535
excludeTests: undefined,
3636
funding: undefined,
3737
guide: undefined,
38+
guideTitle: undefined,
3839
logo: undefined,
3940
offline: undefined,
4041
owner: undefined,
@@ -753,6 +754,7 @@ describe("readOptions", () => {
753754
"funding": undefined,
754755
"github": "mock.git",
755756
"guide": undefined,
757+
"guideTitle": undefined,
756758
"logo": undefined,
757759
"mode": "migrate",
758760
"offline": true,

src/shared/options/readOptions.ts

+1
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ export async function readOptions(
8585
excludeTests: values["unit-tests"],
8686
funding: values.funding,
8787
guide: values.guide,
88+
guideTitle: values["guide-title"],
8889
logo: values.logo,
8990
offline: values.offline,
9091
owner: values.owner,

0 commit comments

Comments
 (0)