Skip to content

Commit 855c1da

Browse files
fix: use standard packages or link to issues for remaining code TODOs (#1994)
## PR Checklist - [x] Addresses an existing open issue: fixes #1987 - [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 Cleans up some pending code TODOs: * Bumping `@vitest/eslint-plugin` to include vitest-dev/eslint-plugin-vitest#682 * Refactors `retGitDefaults` to execute a straightforward `git remote get-url origin` instead of the full `git-remote-origin-url` * Uses [`sort-keys`](http://npmjs.com/package/sort-keys) instead of the ad-hoc internal `sortKeys` * Uses [`zod-package-json`](http://npmjs.com/package/zod-package-json) instead of a manually written schema Otherwise doesn't change behavior, instead adding links to: * #1990 * #1991 * #1992 * #1993 🎁
1 parent 666e3fa commit 855c1da

18 files changed

+64
-89
lines changed

docs/CLI.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Each defaults to a value based on the running system, including an repository if
4545

4646
| Flag | Type | Description | Default |
4747
| -------------- | ---------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
48-
| `--access` | `string` | Which [`npm publish --access`](https://docs.npmjs.com/cli/commands/npm-publish#access) to release npm packages with | `"public"` (TODO: file issue for `readAccess`) |
48+
| `--access` | `string` | Which [`npm publish --access`](https://docs.npmjs.com/cli/commands/npm-publish#access) to release npm packages with | `"public"` |
4949
| `--author` | `string` | Username on npm to publish packages under | An existing npm author, or the currently logged in npm user, or `owner.toLowerCase()` |
5050
| `--bin` | `string` | Value to set in `package.json`'s `"bin"` property, per [FAQs > How can I use `bin`?](./FAQs.md#how-can-i-use-bin) | _(none)_ |
5151
| `--email` | `string` | Email address to be listed as the point of contact in docs and packages (e.g. `[email protected]`) | Yours from `gh`, `git config`, or `npm whoami` |

package.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@
4242
"bingo-stratum": "^0.5.5",
4343
"cspell-populate-words": "^0.3.0",
4444
"execa": "^9.5.2",
45-
"git-remote-origin-url": "^4.0.0",
4645
"git-url-parse": "^16.0.1",
4746
"github-default-labels": "^0.1.0",
4847
"html-to-text": "^9.0.5",
@@ -60,9 +59,11 @@
6059
"remove-dependencies": "^0.1.0",
6160
"remove-undefined-objects": "^6.0.0",
6261
"set-github-repository-labels": "^0.2.0",
62+
"sort-keys": "^5.1.0",
6363
"sort-package-json": "^3.0.0",
6464
"title-case": "^4.3.2",
65-
"zod": "^3.24.2"
65+
"zod": "^3.24.2",
66+
"zod-package-json": "^1.1.0"
6667
},
6768
"devDependencies": {
6869
"@eslint-community/eslint-plugin-eslint-comments": "4.4.1",
@@ -77,7 +78,7 @@
7778
"@types/node": "22.13.9",
7879
"@types/parse-author": "2.0.3",
7980
"@vitest/coverage-v8": "3.0.7",
80-
"@vitest/eslint-plugin": "1.1.36",
81+
"@vitest/eslint-plugin": "1.1.38",
8182
"all-contributors-cli": "6.26.1",
8283
"bingo-requests": "^0.5.4",
8384
"bingo-stratum-testers": "0.5.6",

pnpm-lock.yaml

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

src/base.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ export const base = createBase({
7878
}),
7979
])
8080
// TODO: Test this? Is it still working?
81+
// https://github.com/JoshuaKGoldberg/create-typescript-app/issues/1991
8182
.transform((email) =>
8283
typeof email === "string" ? { github: email, npm: email } : email,
8384
)
@@ -220,7 +221,7 @@ export const base = createBase({
220221

221222
const getFunding = lazyValue(async () => await readFunding(take));
222223

223-
const getGitDefaults = lazyValue(async () => await readGitDefaults());
224+
const getGitDefaults = lazyValue(async () => await readGitDefaults(take));
224225

225226
const getGuide = lazyValue(async () => await readGuide(take));
226227

src/blocks/blockESLint.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
// @ts-expect-error -- https://github.com/egoist/parse-package-name/issues/30
22
import { parse as parsePackageName } from "parse-package-name";
3+
import sortKeys from "sort-keys";
34
import { z } from "zod";
45

56
import { base } from "../base.js";
67
import { getPackageDependencies } from "../data/packageData.js";
7-
import { sortObject } from "../utils/sortObject.js";
88
import { blockCSpell } from "./blockCSpell.js";
99
import { blockDevelopmentDocs } from "./blockDevelopmentDocs.js";
1010
import { blockGitHubActionsCI } from "./blockGitHubActionsCI.js";
@@ -243,7 +243,7 @@ function printExtension(extension: z.infer<typeof zExtension>) {
243243
`linterOptions: ${JSON.stringify(extension.linterOptions)}`,
244244
extension.rules && `rules: ${printExtensionRules(extension.rules)},`,
245245
extension.settings &&
246-
`settings: ${JSON.stringify(sortObject(extension.settings))},`,
246+
`settings: ${JSON.stringify(sortKeys(extension.settings))},`,
247247
"}",
248248
]
249249
.filter(Boolean)

src/blocks/blockExampleFiles.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ export const blockExampleFiles = base.createBlock({
1616
},
1717
};
1818
},
19-
// TODO: Make produce() optional
20-
// This needs createBlock to be generic to know if block.produce({}) is ok
19+
// TODO: Make produce() optional, so this empty-ish produce() can be removed
20+
// https://github.com/JoshuaKGoldberg/bingo/issues/295
2121
produce() {
2222
return {};
2323
},

src/blocks/blockPackageJson.ts

+2-13
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import * as htmlToText from "html-to-text";
22
import removeUndefinedObjects from "remove-undefined-objects";
33
import sortPackageJson from "sort-package-json";
44
import { z } from "zod";
5+
import { PackageJson } from "zod-package-json";
56

67
import { base } from "../base.js";
78
import { CommandPhase } from "./phases.js";
@@ -12,19 +13,7 @@ export const blockPackageJson = base.createBlock({
1213
},
1314
addons: {
1415
cleanupCommands: z.array(z.string()).default([]),
15-
// TODO: Find a zod package for this?
16-
properties: z
17-
.intersection(
18-
z.object({
19-
dependencies: z.record(z.string(), z.string()).optional(),
20-
devDependencies: z.record(z.string(), z.string()).optional(),
21-
files: z.array(z.string()).optional(),
22-
peerDependencies: z.record(z.string(), z.string()).optional(),
23-
scripts: z.record(z.string(), z.string()).optional(),
24-
}),
25-
z.record(z.string(), z.unknown()),
26-
)
27-
.default({}),
16+
properties: PackageJson.partial().default({}),
2817
},
2918
produce({ addons, offline, options }) {
3019
const dependencies = {

src/blocks/blockRepositoryBranchRuleset.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ export const blockRepositoryBranchRuleset = base.createBlock({
4949
],
5050
};
5151
},
52-
// TODO: Make produce() optional
53-
// This needs createBlock to be generic to know if block.produce({}) is ok
52+
// TODO: Make produce() optional, so this empty-ish produce() can be removed
53+
// https://github.com/JoshuaKGoldberg/bingo/issues/295
5454
produce() {
5555
return {};
5656
},

src/blocks/blockVSCode.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1+
import sortKeys from "sort-keys";
12
import { z } from "zod";
23

34
import { base } from "../base.js";
4-
import { sortObject } from "../utils/sortObject.js";
55
import { blockDevelopmentDocs } from "./blockDevelopmentDocs.js";
66

77
export const blockVSCode = base.createBlock({
@@ -83,7 +83,7 @@ To launch it, open a test file, then run _Debug Current Test File_ from the VS C
8383
version: "0.2.0",
8484
}),
8585
"settings.json": JSON.stringify(
86-
sortObject({
86+
sortKeys({
8787
"editor.formatOnSave": true,
8888
"editor.rulers": [80],
8989
...settings,

src/blocks/blockVitest.test.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ describe("blockVitest", () => {
170170
"properties": {
171171
"devDependencies": {
172172
"@vitest/coverage-v8": "3.0.7",
173-
"@vitest/eslint-plugin": "1.1.36",
173+
"@vitest/eslint-plugin": "1.1.38",
174174
"console-fail-test": "0.5.0",
175175
"vitest": "3.0.7",
176176
},
@@ -408,7 +408,7 @@ describe("blockVitest", () => {
408408
"properties": {
409409
"devDependencies": {
410410
"@vitest/coverage-v8": "3.0.7",
411-
"@vitest/eslint-plugin": "1.1.36",
411+
"@vitest/eslint-plugin": "1.1.38",
412412
"console-fail-test": "0.5.0",
413413
"vitest": "3.0.7",
414414
},
@@ -667,7 +667,7 @@ describe("blockVitest", () => {
667667
"properties": {
668668
"devDependencies": {
669669
"@vitest/coverage-v8": "3.0.7",
670-
"@vitest/eslint-plugin": "1.1.36",
670+
"@vitest/eslint-plugin": "1.1.38",
671671
"console-fail-test": "0.5.0",
672672
"vitest": "3.0.7",
673673
},

src/docsBlocks.test.ts

-3
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,6 @@ describe("docs/Blocks.md", () => {
2929
continue;
3030
}
3131

32-
// TODO: Enable vitest/eslint-plugin type-checking:
33-
// https://github.com/vitest-dev/eslint-plugin-vitest?tab=readme-ov-file#enabling-with-type-testing
34-
// eslint-disable-next-line vitest/valid-title
3532
test(name, () => {
3633
const actualLine = actualLines.find((line) => line.includes(`| ${name}`));
3734
const expectedLine = expectedLines[i];

src/inputs/inputFromOctokit.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ export const inputFromOctokit = createInput({
77
options: z.record(z.string(), z.unknown()).optional(),
88
},
99
// TODO: Strongly type this, then push it upstream to Bingo
10-
// This will require smart types around GitHub endpoints, similar to:
11-
// https://github.com/JoshuaKGoldberg/bingo/issues/65
10+
// https://github.com/JoshuaKGoldberg/bingo/issues/296
1211
async produce({ args, fetchers }): Promise<unknown> {
1312
try {
1413
const response = await fetchers.octokit.request(args.endpoint, {

src/options/readGitDefaults.test.ts

+8-8
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,20 @@ vi.mock("git-remote-origin-url", () => ({
1111
}));
1212

1313
describe(readGitDefaults, () => {
14-
it("resolves undefined when fetching the origin url rejects", async () => {
15-
mockGitRemoteOriginUrl.mockRejectedValueOnce(new Error("Oh no!"));
14+
it("resolves undefined when get-url origin has no stdout", async () => {
15+
const take = vi.fn().mockResolvedValueOnce({});
1616

17-
const actual = await readGitDefaults();
17+
const actual = await readGitDefaults(take);
1818

1919
expect(actual).toBeUndefined();
2020
});
2121

22-
it("resolves the parsed when fetching the origin url succeeds", async () => {
23-
mockGitRemoteOriginUrl.mockResolvedValueOnce(
24-
"git@github.com/JoshuaKGoldberg/create-typescript-app",
25-
);
22+
it("resolves the parsed url when get-url origin url succeeds", async () => {
23+
const take = vi.fn().mockResolvedValueOnce({
24+
stdout: "https://github.com/JoshuaKGoldberg/create-typescript-app.git",
25+
});
2626

27-
const actual = await readGitDefaults();
27+
const actual = await readGitDefaults(take);
2828

2929
expect(actual).toMatchObject({
3030
name: "create-typescript-app",

src/options/readGitDefaults.ts

+7-9
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
1-
import gitRemoteOriginUrl from "git-remote-origin-url";
1+
import { TakeInput } from "bingo";
22
import gitUrlParse from "git-url-parse";
3+
import { inputFromScript } from "input-from-script";
34

4-
// TODO: gitRemoteOriginUrl does not go through take(input*), making it harder to test.
5-
// The next refactor here should add an input.
5+
export async function readGitDefaults(take: TakeInput) {
6+
const url = await take(inputFromScript, {
7+
command: "git remote get-url origin",
8+
});
69

7-
export async function readGitDefaults() {
8-
try {
9-
return gitUrlParse(await gitRemoteOriginUrl());
10-
} catch {
11-
return undefined;
12-
}
10+
return url.stdout ? gitUrlParse(url.stdout.toString()) : undefined;
1311
}

0 commit comments

Comments
 (0)