Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: allow README.md explainer to be a full section #2128

Merged
merged 4 commits into from
Apr 3, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion docs/Configuration Files.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ These options are generally only programmatically used internally, but can still
| `contributors` | AllContributors contributors to store in `.all-contributorsrc` | Existing contributors in the file, or just your username |
| `documentation` | additional docs to add to `.github/DEVELOPMENT.md` and/or `README.md` | Extra content in those two files |
| `existingLabels` | existing labels to switch to the standard template labels | Existing labels on the repository from the GitHub API |
| `explainer` | additional `README.md` sentence(s) describing the package | Extra content in `README.md` after badges and description |
| `guide` | link to a contribution guide to place at the top of development docs | Block quote on top of `.github/DEVELOPMENT.md` |
| `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` |
| `node` | Node.js engine version(s) to pin and require a minimum of | Values from `.nvmrc` and `package.json`'s `"engines"` |
Expand Down
8 changes: 4 additions & 4 deletions src/base.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ describe("base", () => {
development: expect.any(String),
readme: {
additional: expect.any(String),
explainer: [
`\`create-typescript-app\` is a one-stop-shop solution to set up a new or existing repository with the latest and greatest TypeScript tooling.`,
`It includes options not just for building and testing but also automated release management, contributor recognition, GitHub repository settings, and more.`,
].join("\n"),
usage: expect.any(String),
},
},
Expand All @@ -33,10 +37,6 @@ describe("base", () => {
},
emoji: "🎁",
existingLabels: expect.any(Array),
explainer: [
`\`create-typescript-app\` is a one-stop-shop solution to set up a new or existing repository with the latest and greatest TypeScript tooling.`,
`It includes options not just for building and testing but also automated release management, contributor recognition, GitHub repository settings, and more.`,
],
funding: "JoshuaKGoldberg",
guide: {
href: "https://www.joshuakgoldberg.com/blog/contributing-to-a-create-typescript-app-repository",
Expand Down
14 changes: 6 additions & 8 deletions src/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ import { readEmailFromNpm } from "./options/readEmailFromNpm.js";
import { readEmails } from "./options/readEmails.js";
import { readEmoji } from "./options/readEmoji.js";
import { readExistingLabels } from "./options/readExistingLabels.js";
import { readExplainer } from "./options/readExplainer.js";
import { readFileSafe } from "./options/readFileSafe.js";
import { readFunding } from "./options/readFunding.js";
import { readGitDefaults } from "./options/readGitDefaults.js";
Expand All @@ -31,6 +30,7 @@ import { readPackageAuthor } from "./options/readPackageAuthor.js";
import { readPackageData } from "./options/readPackageData.js";
import { readPnpm } from "./options/readPnpm.js";
import { readReadmeAdditional } from "./options/readReadmeAdditional.js";
import { readReadmeExplainer } from "./options/readReadmeExplainer.js";
import { readReadmeUsage } from "./options/readReadmeUsage.js";
import { readRepository } from "./options/readRepository.js";
import { readRulesetId } from "./options/readRulesetId.js";
Expand Down Expand Up @@ -94,10 +94,6 @@ export const base = createBase({
)
.optional()
.describe("existing labels from the GitHub repository"),
explainer: z
.array(z.string())
.optional()
.describe("additional README.md sentence(s) describing the package"),
funding: z
.string()
.optional()
Expand Down Expand Up @@ -200,6 +196,7 @@ export const base = createBase({
await readDocumentation(
getDevelopmentDocumentation,
getReadmeAdditional,
getReadmeExplainer,
getReadmeUsage,
),
);
Expand Down Expand Up @@ -232,8 +229,6 @@ export const base = createBase({
async () => await readExistingLabels(take, getOwner, getRepository),
);

const getExplainer = lazyValue(async () => await readExplainer(getReadme));

const getFunding = lazyValue(async () => await readFunding(take));

const getGitDefaults = lazyValue(async () => await readGitDefaults(take));
Expand Down Expand Up @@ -282,6 +277,10 @@ export const base = createBase({
async () => await readReadmeAdditional(getReadme),
);

const getReadmeExplainer = lazyValue(
async () => await readReadmeExplainer(getReadme),
);

const getReadmeUsage = lazyValue(
async () => await readReadmeUsage(getEmoji, getReadme, getRepository),
);
Expand Down Expand Up @@ -318,7 +317,6 @@ export const base = createBase({
email: getEmail,
emoji: getEmoji,
existingLabels: getExistingLabels,
explainer: getExplainer,
funding: getFunding,
guide: getGuide,
keywords: getKeywords,
Expand Down
18 changes: 16 additions & 2 deletions src/blocks/blockREADME.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,13 @@ describe("blockREADME", () => {
const creation = testBlock(blockREADME, {
options: {
...optionsBase,
explainer: ["And a one.", "And a two."],
documentation: {
...optionsBase.documentation,
readme: {
...optionsBase.documentation.readme,
explainer: "\nAnd a one.\nAnd a two.\n",
},
},
},
});

Expand All @@ -136,9 +142,11 @@ describe("blockREADME", () => {
<img alt="💪 TypeScript: Strict" src="https://img.shields.io/badge/%F0%9F%92%AA_typescript-strict-21bb42.svg" />
</p>


And a one.
And a two.


## Usage

Test usage.
Expand Down Expand Up @@ -238,7 +246,13 @@ describe("blockREADME", () => {
const creation = testBlock(blockREADME, {
options: {
...optionsBase,
explainer: ["And a one.", "And a two."],
documentation: {
...optionsBase.documentation,
readme: {
...optionsBase.documentation.readme,
explainer: "And a one.\nAnd a two.",
},
},
logo: {
alt: "My logo",
height: 100,
Expand Down
3 changes: 2 additions & 1 deletion src/blocks/blockREADME.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ export const blockREADME = base.createBlock({
const { badges, notices, sections } = addons;

const explainer =
options.explainer && `\n${options.explainer.join("\n")}\n`;
options.documentation.readme.explainer &&
`\n${options.documentation.readme.explainer}\n`;

const logo =
options.logo &&
Expand Down
5 changes: 4 additions & 1 deletion src/options/readDocumentation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@ import { Documentation } from "../schemas.js";
export async function readDocumentation(
getDevelopmentDocumentation: () => Promise<string | undefined>,
getReadmeAdditional: () => Promise<string | undefined>,
getReadmeExplainer: () => Promise<string | undefined>,
getReadmeUsage: () => Promise<string>,
): Promise<Documentation> {
const [additional, development, usage] = await Promise.all([
const [additional, explainer, development, usage] = await Promise.all([
getReadmeAdditional(),
getReadmeExplainer(),
getDevelopmentDocumentation(),
getReadmeUsage(),
]);
Expand All @@ -15,6 +17,7 @@ export async function readDocumentation(
development,
readme: {
additional,
explainer,
usage,
},
};
Expand Down
68 changes: 0 additions & 68 deletions src/options/readExplainer.test.ts

This file was deleted.

16 changes: 0 additions & 16 deletions src/options/readExplainer.ts

This file was deleted.

Loading