Skip to content

Commit 3d3c5a8

Browse files
fix: allow README.md explainer to be a full section (#2128)
## PR Checklist - [x] Addresses an existing open issue: fixes #2127 - [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 Moves the `explainer` option into `documentation.readme` so it sits alongside `additional`. 🎁
1 parent 7cae646 commit 3d3c5a8

11 files changed

+254
-101
lines changed

docs/Configuration Files.md

-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ These options are generally only programmatically used internally, but can still
2424
| `contributors` | AllContributors contributors to store in `.all-contributorsrc` | Existing contributors in the file, or just your username |
2525
| `documentation` | additional docs to add to `.github/DEVELOPMENT.md` and/or `README.md` | Extra content in those two files |
2626
| `existingLabels` | existing labels to switch to the standard template labels | Existing labels on the repository from the GitHub API |
27-
| `explainer` | additional `README.md` sentence(s) describing the package | Extra content in `README.md` after badges and description |
2827
| `guide` | link to a contribution guide to place at the top of development docs | Block quote on top of `.github/DEVELOPMENT.md` |
2928
| `logo` | local image file and alt text to display near the top of the `README.md` | First non-badge image's `alt` and `src` in `README.md` |
3029
| `node` | Node.js engine version(s) to pin and require a minimum of | Values from `.nvmrc` and `package.json`'s `"engines"` |

src/base.test.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ describe("base", () => {
2424
development: expect.any(String),
2525
readme: {
2626
additional: expect.any(String),
27+
explainer: [
28+
`\`create-typescript-app\` is a one-stop-shop solution to set up a new or existing repository with the latest and greatest TypeScript tooling.`,
29+
`It includes options not just for building and testing but also automated release management, contributor recognition, GitHub repository settings, and more.`,
30+
].join("\n"),
2731
usage: expect.any(String),
2832
},
2933
},
@@ -33,10 +37,6 @@ describe("base", () => {
3337
},
3438
emoji: "🎁",
3539
existingLabels: expect.any(Array),
36-
explainer: [
37-
`\`create-typescript-app\` is a one-stop-shop solution to set up a new or existing repository with the latest and greatest TypeScript tooling.`,
38-
`It includes options not just for building and testing but also automated release management, contributor recognition, GitHub repository settings, and more.`,
39-
],
4040
funding: "JoshuaKGoldberg",
4141
guide: {
4242
href: "https://www.joshuakgoldberg.com/blog/contributing-to-a-create-typescript-app-repository",

src/base.ts

+6-8
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ import { readEmailFromNpm } from "./options/readEmailFromNpm.js";
1717
import { readEmails } from "./options/readEmails.js";
1818
import { readEmoji } from "./options/readEmoji.js";
1919
import { readExistingLabels } from "./options/readExistingLabels.js";
20-
import { readExplainer } from "./options/readExplainer.js";
2120
import { readFileSafe } from "./options/readFileSafe.js";
2221
import { readFunding } from "./options/readFunding.js";
2322
import { readGitDefaults } from "./options/readGitDefaults.js";
@@ -31,6 +30,7 @@ import { readPackageAuthor } from "./options/readPackageAuthor.js";
3130
import { readPackageData } from "./options/readPackageData.js";
3231
import { readPnpm } from "./options/readPnpm.js";
3332
import { readReadmeAdditional } from "./options/readReadmeAdditional.js";
33+
import { readReadmeExplainer } from "./options/readReadmeExplainer.js";
3434
import { readReadmeUsage } from "./options/readReadmeUsage.js";
3535
import { readRepository } from "./options/readRepository.js";
3636
import { readRulesetId } from "./options/readRulesetId.js";
@@ -94,10 +94,6 @@ export const base = createBase({
9494
)
9595
.optional()
9696
.describe("existing labels from the GitHub repository"),
97-
explainer: z
98-
.array(z.string())
99-
.optional()
100-
.describe("additional README.md sentence(s) describing the package"),
10197
funding: z
10298
.string()
10399
.optional()
@@ -200,6 +196,7 @@ export const base = createBase({
200196
await readDocumentation(
201197
getDevelopmentDocumentation,
202198
getReadmeAdditional,
199+
getReadmeExplainer,
203200
getReadmeUsage,
204201
),
205202
);
@@ -232,8 +229,6 @@ export const base = createBase({
232229
async () => await readExistingLabels(take, getOwner, getRepository),
233230
);
234231

235-
const getExplainer = lazyValue(async () => await readExplainer(getReadme));
236-
237232
const getFunding = lazyValue(async () => await readFunding(take));
238233

239234
const getGitDefaults = lazyValue(async () => await readGitDefaults(take));
@@ -282,6 +277,10 @@ export const base = createBase({
282277
async () => await readReadmeAdditional(getReadme),
283278
);
284279

280+
const getReadmeExplainer = lazyValue(
281+
async () => await readReadmeExplainer(getReadme),
282+
);
283+
285284
const getReadmeUsage = lazyValue(
286285
async () => await readReadmeUsage(getEmoji, getReadme, getRepository),
287286
);
@@ -318,7 +317,6 @@ export const base = createBase({
318317
email: getEmail,
319318
emoji: getEmoji,
320319
existingLabels: getExistingLabels,
321-
explainer: getExplainer,
322320
funding: getFunding,
323321
guide: getGuide,
324322
keywords: getKeywords,

src/blocks/blockREADME.test.ts

+16-2
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,13 @@ describe("blockREADME", () => {
121121
const creation = testBlock(blockREADME, {
122122
options: {
123123
...optionsBase,
124-
explainer: ["And a one.", "And a two."],
124+
documentation: {
125+
...optionsBase.documentation,
126+
readme: {
127+
...optionsBase.documentation.readme,
128+
explainer: "\nAnd a one.\nAnd a two.\n",
129+
},
130+
},
125131
},
126132
});
127133

@@ -136,9 +142,11 @@ describe("blockREADME", () => {
136142
<img alt="💪 TypeScript: Strict" src="https://img.shields.io/badge/%F0%9F%92%AA_typescript-strict-21bb42.svg" />
137143
</p>
138144
145+
139146
And a one.
140147
And a two.
141148
149+
142150
## Usage
143151
144152
Test usage.
@@ -238,7 +246,13 @@ describe("blockREADME", () => {
238246
const creation = testBlock(blockREADME, {
239247
options: {
240248
...optionsBase,
241-
explainer: ["And a one.", "And a two."],
249+
documentation: {
250+
...optionsBase.documentation,
251+
readme: {
252+
...optionsBase.documentation.readme,
253+
explainer: "And a one.\nAnd a two.",
254+
},
255+
},
242256
logo: {
243257
alt: "My logo",
244258
height: 100,

src/blocks/blockREADME.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ export const blockREADME = base.createBlock({
3636
const { badges, notices, sections } = addons;
3737

3838
const explainer =
39-
options.explainer && `\n${options.explainer.join("\n")}\n`;
39+
options.documentation.readme.explainer &&
40+
`\n${options.documentation.readme.explainer}\n`;
4041

4142
const logo =
4243
options.logo &&

src/options/readDocumentation.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,12 @@ import { Documentation } from "../schemas.js";
33
export async function readDocumentation(
44
getDevelopmentDocumentation: () => Promise<string | undefined>,
55
getReadmeAdditional: () => Promise<string | undefined>,
6+
getReadmeExplainer: () => Promise<string | undefined>,
67
getReadmeUsage: () => Promise<string>,
78
): Promise<Documentation> {
8-
const [additional, development, usage] = await Promise.all([
9+
const [additional, explainer, development, usage] = await Promise.all([
910
getReadmeAdditional(),
11+
getReadmeExplainer(),
1012
getDevelopmentDocumentation(),
1113
getReadmeUsage(),
1214
]);
@@ -15,6 +17,7 @@ export async function readDocumentation(
1517
development,
1618
readme: {
1719
additional,
20+
explainer,
1821
usage,
1922
},
2023
};

src/options/readExplainer.test.ts

-68
This file was deleted.

src/options/readExplainer.ts

-16
This file was deleted.

0 commit comments

Comments
 (0)