Skip to content

Commit c7a0881

Browse files
chore: use cspell-populate-words in CSpell block (#1794)
- [x] Addresses an existing open issue: fixes #381 - [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 only to the new `create` engine Block system, because it'd be a nontrivial change in the old system, and I want that old system to be gone within the next few weeks. 🚀 Uses: 1. [`object-strings-deep`](https://github.com/JoshuaKGoldberg/object-strings-deep) to collect all strings from options 2. [`cspell-populate-words`](https://github.com/JoshuaKGoldberg/cspell-populate-words) in a new `script` to add any reported words to the `cspell.json` file Scoping the PR as a `chore:` because the new system is not yet part of the public API. 💖
1 parent 33e235b commit c7a0881

File tree

8 files changed

+60
-3
lines changed

8 files changed

+60
-3
lines changed

knip.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://unpkg.com/[email protected]/schema.json",
33
"entry": ["script/*e2e.js", "src/index.ts!", "src/**/*.test.*"],
4-
"ignoreDependencies": ["all-contributors-cli"],
4+
"ignoreDependencies": ["all-contributors-cli", "cspell-populate-words"],
55
"ignoreExportsUsedInFile": { "interface": true, "type": true },
66
"project": ["src/**/*.ts!", "script/**/*.js"]
77
}

package.json

+2
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
4545
"@prettier/sync": "^0.5.2",
4646
"chalk": "^5.3.0",
4747
"create": "0.1.0-alpha.7",
48+
"cspell-populate-words": "^0.2.2",
4849
"execa": "^9.5.2",
4950
"git-remote-origin-url": "^4.0.0",
5051
"git-url-parse": "^16.0.0",
@@ -53,6 +54,7 @@
5354
"js-yaml": "^4.1.0",
5455
"lazy-value": "^3.0.0",
5556
"npm-user": "^6.1.1",
57+
"object-strings-deep": "^0.1.1",
5658
"octokit": "^4.0.2",
5759
"octokit-from-auth": "^0.3.0",
5860
"parse-author": "^2.0.0",

pnpm-lock.yaml

+21
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/next/blocks/blockCSpell.test.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
import { testBlock } from "create-testers";
2-
import { describe, expect, test } from "vitest";
2+
import { describe, expect, test, vi } from "vitest";
33

44
import { blockCSpell } from "./blockCSpell.js";
55
import { optionsBase } from "./options.fakes.js";
66

7+
vi.mock("../utils/resolveBin.js", () => ({
8+
resolveBin: (bin: string) => `path/to/${bin}`,
9+
}));
10+
711
describe("blockCSpell", () => {
812
test("without addons", () => {
913
const creation = testBlock(blockCSpell, {

src/next/blocks/blockCSpell.ts

+19
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
1+
import { getObjectStringsDeep } from "object-strings-deep";
12
import { z } from "zod";
23

34
import { base } from "../base.js";
5+
import { resolveBin } from "../utils/resolveBin.js";
46
import { blockDevelopmentDocs } from "./blockDevelopmentDocs.js";
57
import { blockGitHubActionsCI } from "./blockGitHubActionsCI.js";
68
import { blockPackageJson } from "./blockPackageJson.js";
79
import { blockVSCode } from "./blockVSCode.js";
810
import { getPackageDependencies } from "./packageData.js";
11+
import { CommandPhase } from "./phases.js";
912

1013
const filesGlob = `"**" ".github/**/*"`;
1114

@@ -17,6 +20,22 @@ export const blockCSpell = base.createBlock({
1720
ignores: z.array(z.string()).default([]),
1821
words: z.array(z.string()).default([]),
1922
},
23+
initialize({ options }) {
24+
const wordArgs = getObjectStringsDeep(options)
25+
.map((word) => `--words "${word.replaceAll(`"`, " ")}"`)
26+
.join(" ");
27+
28+
return {
29+
scripts: [
30+
{
31+
commands: [
32+
`node ${resolveBin("cspell-populate-words/bin/index.mjs")} ${wordArgs}`,
33+
],
34+
phase: CommandPhase.Process,
35+
},
36+
],
37+
};
38+
},
2039
produce({ addons }) {
2140
const { ignores, words } = addons;
2241

src/next/utils/resolveBin.ts

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
export function resolveBin(bin: string) {
2+
return import.meta.resolve(bin).replace(/^file:\/\//gu, "");
3+
}

src/steps/uninstallPackages.ts

+2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ export async function uninstallPackages(offline: boolean | undefined) {
1212
"all-contributors-cli",
1313
"chalk",
1414
"create",
15+
"cspell-populate-words",
1516
"execa",
1617
"git-remote-origin-url",
1718
"git-url-parse",
@@ -20,6 +21,7 @@ export async function uninstallPackages(offline: boolean | undefined) {
2021
"js-yaml",
2122
"lazy-value",
2223
"npm-user",
24+
"object-strings-deep",
2325
"octokit",
2426
"octokit-from-auth",
2527
"parse-author",

src/steps/writing/creation/index.test.ts

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
1-
import { describe, expect, it } from "vitest";
1+
import { describe, expect, it, vi } from "vitest";
22

33
import { getPackageDependencies } from "../../../next/blocks/packageData.js";
44
import { Options } from "../../../shared/types.js";
55
import { createStructure } from "./index.js";
66

7+
vi.mock("../../../next/utils/resolveBin.ts", () => ({
8+
resolveBin: (bin: string) => `path/to/${bin}`,
9+
}));
10+
711
/* eslint-disable @typescript-eslint/no-dynamic-delete */
812

913
const documentation = `
@@ -204,6 +208,7 @@ describe("createStructure", () => {
204208
"@prettier/sync",
205209
"chalk",
206210
"create",
211+
"cspell-populate-words",
207212
"execa",
208213
"git-remote-origin-url",
209214
"git-url-parse",
@@ -212,6 +217,7 @@ describe("createStructure", () => {
212217
"js-yaml",
213218
"lazy-value",
214219
"npm-user",
220+
"object-strings-deep",
215221
"octokit",
216222
"octokit-from-auth",
217223
"parse-author",

0 commit comments

Comments
 (0)