Skip to content

Commit 2b57403

Browse files
fix: more permissive usage bounds and headings (#2042)
## PR Checklist - [x] Addresses an existing open issue: fixes #2041 - [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 Makes `options.usage` parsing more permissive in two ways: * Instead of only searching for a second heading under `## Development`, also allows `## Contributing` and `## Contributors` * If that second heading isn't found then the rest of the README.md is returned instead of `undefined` The fixed behavior can be seen in JoshuaKGoldberg/cspell-populate-words@736e48b. 🎁
1 parent 01b689b commit 2b57403

File tree

2 files changed

+25
-12
lines changed

2 files changed

+25
-12
lines changed

src/options/readUsageFromReadme.test.ts

+18-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ describe(readUsageFromReadme, () => {
99
expect(usage).toBeUndefined();
1010
});
1111

12-
it("returns undefined when ## Usage found and ## Development is not found", () => {
12+
it("returns existing content when ## Usage is found and a next important heading is not found", () => {
1313
const usage = readUsageFromReadme("## Usage\n\nContents.");
1414

15-
expect(usage).toBeUndefined();
15+
expect(usage).toBe(`\n\nContents.`);
1616
});
1717

1818
it("returns undefined when there is no content between ## Usage and ## Development", () => {
@@ -26,4 +26,20 @@ describe(readUsageFromReadme, () => {
2626

2727
expect(usage).toBe("Content.");
2828
});
29+
30+
it("returns the content when content exists between ## Usage and ## Contributing", () => {
31+
const usage = readUsageFromReadme(
32+
"## Usage\n\n Content.\n## Contributing",
33+
);
34+
35+
expect(usage).toBe("Content.");
36+
});
37+
38+
it("returns the content when content exists between ## Usage and ## Contributors", () => {
39+
const usage = readUsageFromReadme(
40+
"## Usage\n\n Content.\n## Contributors",
41+
);
42+
43+
expect(usage).toBe("Content.");
44+
});
2945
});

src/options/readUsageFromReadme.ts

+7-10
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
const startDevelopment = "## Development";
21
const startUsage = "## Usage";
32

43
export function readUsageFromReadme(readme: string) {
@@ -7,17 +6,15 @@ export function readUsageFromReadme(readme: string) {
76
return undefined;
87
}
98

10-
const indexOfDevelopment = readme.indexOf(
11-
startDevelopment,
12-
indexOfUsage + startUsage.length,
13-
);
14-
if (indexOfDevelopment === -1) {
15-
return undefined;
9+
const offset = indexOfUsage + startUsage.length;
10+
const indexOfNextKnownHeading = readme
11+
.slice(offset)
12+
.search(/## (?:Development|Contributing|Contributors)/);
13+
if (indexOfNextKnownHeading === -1) {
14+
return readme.slice(offset);
1615
}
1716

18-
const usage = readme
19-
.slice(indexOfUsage + startUsage.length, indexOfDevelopment)
20-
.trim();
17+
const usage = readme.slice(offset, indexOfNextKnownHeading + offset).trim();
2118

2219
return usage ? usage : undefined;
2320
}

0 commit comments

Comments
 (0)