Skip to content

Commit 442cb3b

Browse files
fix: don't infer --description if it's the source default (#1803)
## PR Checklist - [x] Addresses an existing open issue: fixes #1363 - [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 Applies both in the legacy mode and new create mode. 💖
1 parent d64e3ab commit 442cb3b

File tree

7 files changed

+86
-10
lines changed

7 files changed

+86
-10
lines changed

script/__snapshots__/migrate-test-e2e.ts.snap

+17
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,14 @@ exports[`expected file changes > .prettierignore 1`] = `
115115
exports[`expected file changes > README.md 1`] = `
116116
"--- a/README.md
117117
+++ b/README.md
118+
@@ ... @@
119+
<h1 align="center">Create TypeScript App</h1>
120+
121+
-<p align="center">Quickstart-friendly TypeScript template with comprehensive, configurable, opinionated tooling. ❤️‍🔥</p>
122+
+<p align="center">A very lovely package. Hooray!</p>
123+
124+
<p align="center">
125+
<!-- prettier-ignore-start -->
118126
@@ ... @@ Thanks! 💖
119127
120128
<!-- ALL-CONTRIBUTORS-LIST:END -->
@@ -225,6 +233,15 @@ exports[`expected file changes > knip.json 1`] = `
225233
exports[`expected file changes > package.json 1`] = `
226234
"--- a/package.json
227235
+++ b/package.json
236+
@@ ... @@
237+
{
238+
"name": "create-typescript-app",
239+
"version": "1.78.0",
240+
- "description": "Quickstart-friendly TypeScript template with comprehensive, configurable, opinionated tooling. ❤️‍🔥",
241+
+ "description": "A very lovely package. Hooray!",
242+
"repository": {
243+
"type": "git",
244+
"url": "https://github.com/JoshuaKGoldberg/create-typescript-app"
228245
@@ ... @@
229246
"lint-staged": "15.2.11",
230247
"markdownlint": "0.37.2",

src/next/base.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ import { readGuide } from "../shared/options/createOptionDefaults/readGuide.js";
1717
import { readPackageData } from "../shared/packages.js";
1818
import { tryCatchLazyValueAsync } from "../shared/tryCatchLazyValueAsync.js";
1919
import { AllContributorsData } from "../shared/types.js";
20+
import { readDescription } from "./readDescription.js";
2021
import { readDocumentation } from "./readDocumentation.js";
2122
import { swallowError } from "./utils/swallowError.js";
2223

@@ -193,7 +194,7 @@ export const base = createBase({
193194
author,
194195
bin: async () => (await packageData()).bin,
195196
contributors: allContributors,
196-
description: async () => (await packageData()).description,
197+
description: async () => await readDescription(packageData),
197198
documentation,
198199
email: async () => readEmails(npmDefaults, packageAuthor),
199200
funding: readFunding,

src/next/blocks/packageData.ts

+2-8
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,4 @@
1-
import { createRequire } from "node:module";
2-
3-
const require = createRequire(import.meta.url);
4-
5-
const packageData =
6-
// Importing from above src/ would expand the TS build rootDir
7-
require("../../../package.json") as typeof import("../../../package.json");
1+
import { sourcePackageJson } from "./sourcePackageJson.js";
82

93
export function getPackageDependencies(...names: string[]) {
104
return Object.fromEntries(
@@ -32,7 +26,7 @@ function getPackageInner(
3226
key: "dependencies" | "devDependencies",
3327
name: string,
3428
) {
35-
const inner = packageData[key];
29+
const inner = sourcePackageJson[key];
3630

3731
return inner[name as keyof typeof inner] as string | undefined;
3832
}

src/next/blocks/sourcePackageJson.ts

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import { createRequire } from "node:module";
2+
3+
const require = createRequire(import.meta.url);
4+
5+
export const sourcePackageJson =
6+
// Importing from above src/ would expand the TS build rootDir
7+
require("../../../package.json") as typeof import("../../../package.json");

src/next/readDescription.test.ts

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
import { describe, expect, it, vi } from "vitest";
2+
3+
import { readDescription } from "./readDescription.js";
4+
5+
const mockSourcePackageJsonDescription = vi.fn<() => string>();
6+
7+
vi.mock("./blocks/sourcePackageJson", () => ({
8+
sourcePackageJson: {
9+
get description() {
10+
return mockSourcePackageJsonDescription();
11+
},
12+
},
13+
}));
14+
15+
describe("finalize", () => {
16+
it("returns undefined when the description matches the current package.json description", async () => {
17+
const existing = "Same description.";
18+
19+
mockSourcePackageJsonDescription.mockReturnValueOnce(existing);
20+
21+
const documentation = await readDescription(() =>
22+
Promise.resolve({
23+
description: existing,
24+
}),
25+
);
26+
27+
expect(documentation).toBeUndefined();
28+
});
29+
30+
it("filters known headings when .github/DEVELOPMENT.md exists", async () => {
31+
const updated = "Updated description.";
32+
33+
mockSourcePackageJsonDescription.mockReturnValueOnce(
34+
"Existing description",
35+
);
36+
37+
const documentation = await readDescription(() =>
38+
Promise.resolve({
39+
description: updated,
40+
}),
41+
);
42+
43+
expect(documentation).toBe(updated);
44+
});
45+
});

src/next/readDescription.ts

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import { PartialPackageData } from "../shared/types.js";
2+
import { sourcePackageJson } from "./blocks/sourcePackageJson.js";
3+
4+
export async function readDescription(
5+
getPackageData: () => Promise<PartialPackageData>,
6+
) {
7+
const { description: inferred } = await getPackageData();
8+
const { description: existing } = sourcePackageJson;
9+
10+
return existing === inferred ? undefined : inferred;
11+
}

src/shared/options/createOptionDefaults/index.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import lazyValue from "lazy-value";
55
import * as fs from "node:fs/promises";
66
import npmUser from "npm-user";
77

8+
import { readDescription } from "../../../next/readDescription.js";
89
import { readPackageData } from "../../packages.js";
910
import { tryCatchAsync } from "../../tryCatchAsync.js";
1011
import { tryCatchLazyValueAsync } from "../../tryCatchLazyValueAsync.js";
@@ -33,7 +34,7 @@ export function createOptionDefaults(promptedOptions?: PromptedOptions) {
3334
author: async () =>
3435
(await packageAuthor()).author ?? (await npmDefaults())?.name,
3536
bin: async () => (await packageData()).bin,
36-
description: async () => (await packageData()).description,
37+
description: async () => await readDescription(packageData),
3738
email: async () => readEmails(npmDefaults, packageAuthor),
3839
funding: async () =>
3940
await tryCatchAsync(async () =>

0 commit comments

Comments
 (0)