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: correct README.md parsing without an existing Usage h2 #2143

Merged
merged 1 commit into from
Apr 4, 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
70 changes: 63 additions & 7 deletions src/options/readReadmeExplainer.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ describe(readReadmeExplainer, () => {
This is my project.

## Usage
.`),

...`),
);

expect(actual).toEqual("This is my project.");
Expand All @@ -52,7 +53,8 @@ This is my project.
It is good.

## Usage
.`),

...`),
);

expect(actual).toEqual("This is my project.\nIt is good.");
Expand Down Expand Up @@ -80,7 +82,8 @@ This is my project.
It is good.

## Usage
.`),

...`),
);

expect(actual).toEqual("This is my project.\nIt is good.");
Expand Down Expand Up @@ -108,7 +111,8 @@ This is my project.
It is good.

## Usage
.`),

...`),
);

expect(actual).toEqual("## What?\n\nThis is my project.\nIt is good.");
Expand All @@ -129,7 +133,8 @@ It is good.
> See here.

## Usage
.`),

...`),
);

expect(actual).toEqual(
Expand All @@ -152,7 +157,8 @@ This is my project.
It is good.

## Usage
.`),

...`),
);

expect(actual).toEqual("## What?\n\nThis is my project.\nIt is good.");
Expand All @@ -175,7 +181,57 @@ It is good.
> See here.

## Usage
.`),

...`),
);

expect(actual).toEqual(
"## What?\n\nThis is my project.\nIt is good.\n\n> See here.",
);
});

it("returns existing content before a non-Usage h2 when the Usage h2 does not exist", async () => {
const actual = await readReadmeExplainer(() =>
Promise.resolve(`
<a href="http://npmjs.com/package/create-typescript-app"><img alt="📦 npm version" src="https://img.shields.io/npm/v/create-typescript-app?color=21bb42&label=%F0%9F%93%A6%20npm" /></a>
<img alt="💪 TypeScript: Strict" src="https://img.shields.io/badge/%F0%9F%92%AA_typescript-strict-21bb42.svg" />
</p>

<img align="right" alt="Project logo: the TypeScript blue square with rounded corners, but a plus sign instead of 'TS'" height="128" src="./docs/create-typescript-app.png" width="128">

## What?

This is my project.
It is good.

> See here.

## Contributing

...`),
);

expect(actual).toEqual(
"## What?\n\nThis is my project.\nIt is good.\n\n> See here.",
);
});

it("returns existing content until the end of the file when no subsequent h2 exists", async () => {
const actual = await readReadmeExplainer(() =>
Promise.resolve(`
<a href="http://npmjs.com/package/create-typescript-app"><img alt="📦 npm version" src="https://img.shields.io/npm/v/create-typescript-app?color=21bb42&label=%F0%9F%93%A6%20npm" /></a>
<img alt="💪 TypeScript: Strict" src="https://img.shields.io/badge/%F0%9F%92%AA_typescript-strict-21bb42.svg" />
</p>

<img align="right" alt="Project logo: the TypeScript blue square with rounded corners, but a plus sign instead of 'TS'" height="128" src="./docs/create-typescript-app.png" width="128">

## What?

This is my project.
It is good.

> See here.
`),
);

expect(actual).toEqual(
Expand Down
26 changes: 13 additions & 13 deletions src/options/readReadmeExplainer.ts
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
const lastTagMatchers = [`">`, "/p>", "/>"];

export async function readReadmeExplainer(getReadme: () => Promise<string>) {
const readme = await getReadme();

const indexOfUsageH2 = /## Usage/.exec(readme)?.index ?? readme.indexOf("##");
if (indexOfUsageH2 === -1) {
return undefined;
}

const beforeUsageH2 = readme.slice(0, indexOfUsageH2);

const [indexOfLastTag, lastTagMatcher] = lastLastIndexOf(beforeUsageH2, [
`">`,
"/p>",
"/>",
]);
const indexOfFirstH2 = readme.indexOf("##");
const indexOfUsageH2 = /## Usage/.exec(readme)?.index;
const beforeH2s = readme.slice(0, indexOfUsageH2 ?? indexOfFirstH2);
const [indexOfLastTag, lastTagMatcher] = lastLastIndexOf(
beforeH2s,
lastTagMatchers,
);
if (!lastTagMatcher) {
return undefined;
}

const endingIndex =
indexOfUsageH2 ?? /## (?:Contrib|Develop)/.exec(readme)?.index;

return readme
.slice(indexOfLastTag + lastTagMatcher.length, indexOfUsageH2)
.slice(indexOfLastTag + lastTagMatcher.length, endingIndex)
.trim();
}

Expand Down