Skip to content

Commit a1304c2

Browse files
fix: read keywords from package.json during transition (#2105)
## PR Checklist - [x] Addresses an existing open issue: fixes #2094 - [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 Removes the removal & flat-mapping from spaces because keywords actually can have spaces in them. CLI folks will have to specify them individually. 🎁
1 parent fd87ae8 commit a1304c2

7 files changed

+44
-7
lines changed

docs/CLI.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,11 @@ For example, customizing the npm author and funding source to different values t
6565
npx create-typescript-app --author my-npm-username --funding MyGitHubOrganization
6666
```
6767

68-
Array flags can be specified as space-delineated strings and/or multiple times.
69-
For example, customizing keywords to three:
68+
Array flags can be specified as multiple times.
69+
For example, customizing keywords to two:
7070

7171
```shell
72-
npx create-typescript-app --keywords eslint --keywords "javascript typescript"
72+
npx create-typescript-app --keywords eslint --keywords typescript
7373
```
7474

7575
## Block Exclusion Flags

src/base.ts

+6
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ import { readFileSafe } from "./options/readFileSafe.js";
2222
import { readFunding } from "./options/readFunding.js";
2323
import { readGitDefaults } from "./options/readGitDefaults.js";
2424
import { readGuide } from "./options/readGuide.js";
25+
import { readKeywords } from "./options/readKeywords.js";
2526
import { readLogo } from "./options/readLogo.js";
2627
import { readNode } from "./options/readNode.js";
2728
import { readNpmDefaults } from "./options/readNpmDefaults.js";
@@ -208,6 +209,10 @@ export const base = createBase({
208209
),
209210
);
210211

212+
const getKeywords = lazyValue(
213+
async () => await readKeywords(getPackageData),
214+
);
215+
211216
const getEmailFromCodeOfConduct = lazyValue(
212217
async () => await readEmailFromCodeOfConduct(take),
213218
);
@@ -309,6 +314,7 @@ export const base = createBase({
309314
explainer: getExplainer,
310315
funding: getFunding,
311316
guide: getGuide,
317+
keywords: getKeywords,
312318
logo: getLogo,
313319
node: getNode,
314320
owner: getOwner,

src/blocks/blockPackageJson.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ describe("blockPackageJson", () => {
142142
expect(creation).toMatchInlineSnapshot(`
143143
{
144144
"files": {
145-
"package.json": "{"name":"test-repository","version":"0.0.0","description":"A very very very very very very very very very very very very very very very very long HTML-ish description ending with an emoji. 🧵","keywords":["abc","def","ghi"],"repository":{"type":"git","url":"git+https://github.com/test-owner/test-repository.git"},"license":"MIT","author":{"email":"[email protected]"},"type":"module","files":["README.md","package.json"],"engines":{"node":">=20.12.0"}}",
145+
"package.json": "{"name":"test-repository","version":"0.0.0","description":"A very very very very very very very very very very very very very very very very long HTML-ish description ending with an emoji. 🧵","keywords":["abc","def ghi"],"repository":{"type":"git","url":"git+https://github.com/test-owner/test-repository.git"},"license":"MIT","author":{"email":"[email protected]"},"type":"module","files":["README.md","package.json"],"engines":{"node":">=20.12.0"}}",
146146
},
147147
"scripts": [
148148
{

src/blocks/blockPackageJson.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,7 @@ export const blockPackageJson = base.createBlock({
6767
]
6868
.filter(Boolean)
6969
.sort(),
70-
keywords: options.keywords?.flatMap((keyword) =>
71-
keyword.split(/ /),
72-
),
70+
keywords: options.keywords,
7371
license: "MIT",
7472
name: options.repository,
7573
repository: {

src/options/readKeywords.test.ts

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
import { describe, expect, it } from "vitest";
2+
3+
import { readKeywords } from "./readKeywords.js";
4+
5+
describe(readKeywords, () => {
6+
it("resolves with undefined when there are no existing keywords", async () => {
7+
const actual = await readKeywords(() => Promise.resolve({}));
8+
9+
expect(actual).toBeUndefined();
10+
});
11+
12+
it("resolves with deduplicated and sorted keywords when there are existing keywords", async () => {
13+
const actual = await readKeywords(() =>
14+
Promise.resolve({
15+
keywords: ["b", "a", "c d", "b", "a"],
16+
}),
17+
);
18+
19+
expect(actual).toEqual(["a", "b", "c d"]);
20+
});
21+
});

src/options/readKeywords.ts

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import { PartialPackageData } from "../types.js";
2+
3+
export async function readKeywords(
4+
getPackageData: () => Promise<PartialPackageData>,
5+
) {
6+
const { keywords } = await getPackageData();
7+
8+
return (
9+
keywords && Array.from(new Set((await getPackageData()).keywords)).sort()
10+
);
11+
}

src/types.ts

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ export interface PartialPackageData {
1818
devDependencies?: Record<string, string>;
1919
email?: string;
2020
engines?: { node?: string };
21+
keywords?: string[];
2122
name?: string;
2223
packageManager?: string;
2324
publishConfig?: PartialPublishConfig;

0 commit comments

Comments
 (0)