Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: use standard packages or link to issues for remaining code TODOs #1994

Merged
merged 1 commit into from
Mar 18, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/CLI.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Each defaults to a value based on the running system, including an repository if

| Flag | Type | Description | Default |
| -------------- | ---------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
| `--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`) |
| `--access` | `string` | Which [`npm publish --access`](https://docs.npmjs.com/cli/commands/npm-publish#access) to release npm packages with | `"public"` |
| `--author` | `string` | Username on npm to publish packages under | An existing npm author, or the currently logged in npm user, or `owner.toLowerCase()` |
| `--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)_ |
| `--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` |
Expand Down
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@
"bingo-stratum": "^0.5.5",
"cspell-populate-words": "^0.3.0",
"execa": "^9.5.2",
"git-remote-origin-url": "^4.0.0",
"git-url-parse": "^16.0.1",
"github-default-labels": "^0.1.0",
"html-to-text": "^9.0.5",
Expand All @@ -60,9 +59,11 @@
"remove-dependencies": "^0.1.0",
"remove-undefined-objects": "^6.0.0",
"set-github-repository-labels": "^0.2.0",
"sort-keys": "^5.1.0",
"sort-package-json": "^3.0.0",
"title-case": "^4.3.2",
"zod": "^3.24.2"
"zod": "^3.24.2",
"zod-package-json": "^1.1.0"
},
"devDependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "4.4.1",
Expand All @@ -77,7 +78,7 @@
"@types/node": "22.13.9",
"@types/parse-author": "2.0.3",
"@vitest/coverage-v8": "3.0.7",
"@vitest/eslint-plugin": "1.1.36",
"@vitest/eslint-plugin": "1.1.38",
"all-contributors-cli": "6.26.1",
"bingo-requests": "^0.5.4",
"bingo-stratum-testers": "0.5.6",
Expand Down
50 changes: 23 additions & 27 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion src/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ export const base = createBase({
}),
])
// TODO: Test this? Is it still working?
// https://github.com/JoshuaKGoldberg/create-typescript-app/issues/1991
.transform((email) =>
typeof email === "string" ? { github: email, npm: email } : email,
)
Expand Down Expand Up @@ -220,7 +221,7 @@ export const base = createBase({

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

const getGitDefaults = lazyValue(async () => await readGitDefaults());
const getGitDefaults = lazyValue(async () => await readGitDefaults(take));

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

Expand Down
4 changes: 2 additions & 2 deletions src/blocks/blockESLint.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
// @ts-expect-error -- https://github.com/egoist/parse-package-name/issues/30
import { parse as parsePackageName } from "parse-package-name";
import sortKeys from "sort-keys";
import { z } from "zod";

import { base } from "../base.js";
import { getPackageDependencies } from "../data/packageData.js";
import { sortObject } from "../utils/sortObject.js";
import { blockCSpell } from "./blockCSpell.js";
import { blockDevelopmentDocs } from "./blockDevelopmentDocs.js";
import { blockGitHubActionsCI } from "./blockGitHubActionsCI.js";
Expand Down Expand Up @@ -243,7 +243,7 @@ function printExtension(extension: z.infer<typeof zExtension>) {
`linterOptions: ${JSON.stringify(extension.linterOptions)}`,
extension.rules && `rules: ${printExtensionRules(extension.rules)},`,
extension.settings &&
`settings: ${JSON.stringify(sortObject(extension.settings))},`,
`settings: ${JSON.stringify(sortKeys(extension.settings))},`,
"}",
]
.filter(Boolean)
Expand Down
4 changes: 2 additions & 2 deletions src/blocks/blockExampleFiles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ export const blockExampleFiles = base.createBlock({
},
};
},
// TODO: Make produce() optional
// This needs createBlock to be generic to know if block.produce({}) is ok
// TODO: Make produce() optional, so this empty-ish produce() can be removed
// https://github.com/JoshuaKGoldberg/bingo/issues/295
produce() {
return {};
},
Expand Down
15 changes: 2 additions & 13 deletions src/blocks/blockPackageJson.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import * as htmlToText from "html-to-text";
import removeUndefinedObjects from "remove-undefined-objects";
import sortPackageJson from "sort-package-json";
import { z } from "zod";
import { PackageJson } from "zod-package-json";

import { base } from "../base.js";
import { CommandPhase } from "./phases.js";
Expand All @@ -12,19 +13,7 @@ export const blockPackageJson = base.createBlock({
},
addons: {
cleanupCommands: z.array(z.string()).default([]),
// TODO: Find a zod package for this?
properties: z
.intersection(
z.object({
dependencies: z.record(z.string(), z.string()).optional(),
devDependencies: z.record(z.string(), z.string()).optional(),
files: z.array(z.string()).optional(),
peerDependencies: z.record(z.string(), z.string()).optional(),
scripts: z.record(z.string(), z.string()).optional(),
}),
z.record(z.string(), z.unknown()),
)
.default({}),
properties: PackageJson.partial().default({}),
},
produce({ addons, offline, options }) {
const dependencies = {
Expand Down
4 changes: 2 additions & 2 deletions src/blocks/blockRepositoryBranchRuleset.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ export const blockRepositoryBranchRuleset = base.createBlock({
],
};
},
// TODO: Make produce() optional
// This needs createBlock to be generic to know if block.produce({}) is ok
// TODO: Make produce() optional, so this empty-ish produce() can be removed
// https://github.com/JoshuaKGoldberg/bingo/issues/295
produce() {
return {};
},
Expand Down
4 changes: 2 additions & 2 deletions src/blocks/blockVSCode.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import sortKeys from "sort-keys";
import { z } from "zod";

import { base } from "../base.js";
import { sortObject } from "../utils/sortObject.js";
import { blockDevelopmentDocs } from "./blockDevelopmentDocs.js";

export const blockVSCode = base.createBlock({
Expand Down Expand Up @@ -83,7 +83,7 @@ To launch it, open a test file, then run _Debug Current Test File_ from the VS C
version: "0.2.0",
}),
"settings.json": JSON.stringify(
sortObject({
sortKeys({
"editor.formatOnSave": true,
"editor.rulers": [80],
...settings,
Expand Down
6 changes: 3 additions & 3 deletions src/blocks/blockVitest.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ describe("blockVitest", () => {
"properties": {
"devDependencies": {
"@vitest/coverage-v8": "3.0.7",
"@vitest/eslint-plugin": "1.1.36",
"@vitest/eslint-plugin": "1.1.38",
"console-fail-test": "0.5.0",
"vitest": "3.0.7",
},
Expand Down Expand Up @@ -408,7 +408,7 @@ describe("blockVitest", () => {
"properties": {
"devDependencies": {
"@vitest/coverage-v8": "3.0.7",
"@vitest/eslint-plugin": "1.1.36",
"@vitest/eslint-plugin": "1.1.38",
"console-fail-test": "0.5.0",
"vitest": "3.0.7",
},
Expand Down Expand Up @@ -667,7 +667,7 @@ describe("blockVitest", () => {
"properties": {
"devDependencies": {
"@vitest/coverage-v8": "3.0.7",
"@vitest/eslint-plugin": "1.1.36",
"@vitest/eslint-plugin": "1.1.38",
"console-fail-test": "0.5.0",
"vitest": "3.0.7",
},
Expand Down
3 changes: 0 additions & 3 deletions src/docsBlocks.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,6 @@ describe("docs/Blocks.md", () => {
continue;
}

// TODO: Enable vitest/eslint-plugin type-checking:
// https://github.com/vitest-dev/eslint-plugin-vitest?tab=readme-ov-file#enabling-with-type-testing
// eslint-disable-next-line vitest/valid-title
test(name, () => {
const actualLine = actualLines.find((line) => line.includes(`| ${name}`));
const expectedLine = expectedLines[i];
Expand Down
3 changes: 1 addition & 2 deletions src/inputs/inputFromOctokit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ export const inputFromOctokit = createInput({
options: z.record(z.string(), z.unknown()).optional(),
},
// TODO: Strongly type this, then push it upstream to Bingo
// This will require smart types around GitHub endpoints, similar to:
// https://github.com/JoshuaKGoldberg/bingo/issues/65
// https://github.com/JoshuaKGoldberg/bingo/issues/296
async produce({ args, fetchers }): Promise<unknown> {
try {
const response = await fetchers.octokit.request(args.endpoint, {
Expand Down
16 changes: 8 additions & 8 deletions src/options/readGitDefaults.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,20 @@ vi.mock("git-remote-origin-url", () => ({
}));

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

const actual = await readGitDefaults();
const actual = await readGitDefaults(take);

expect(actual).toBeUndefined();
});

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

const actual = await readGitDefaults();
const actual = await readGitDefaults(take);

expect(actual).toMatchObject({
name: "create-typescript-app",
Expand Down
16 changes: 7 additions & 9 deletions src/options/readGitDefaults.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
import gitRemoteOriginUrl from "git-remote-origin-url";
import { TakeInput } from "bingo";
import gitUrlParse from "git-url-parse";
import { inputFromScript } from "input-from-script";

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

export async function readGitDefaults() {
try {
return gitUrlParse(await gitRemoteOriginUrl());
} catch {
return undefined;
}
return url.stdout ? gitUrlParse(url.stdout.toString()) : undefined;
}
Loading