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: support package.json bin objects #2040

Merged
merged 2 commits into from
Mar 27, 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 src/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export const base = createBase({
.optional()
.describe("username on npm to publish packages under"),
bin: z
.string()
.union([z.string(), z.record(z.string())])
.optional()
.describe('value to set in `package.json`\'s `"bin"` property'),
contributors: z
Expand Down
17 changes: 17 additions & 0 deletions src/blocks/bin/getPrimaryBin.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import { describe, expect, test } from "vitest";

import { getPrimaryBin } from "./getPrimaryBin.js";

const repository = "test-repository";

describe(getPrimaryBin, () => {
test.each([
[undefined, undefined],
["bin/index.js", "bin/index.js"],
[{ [repository]: "bin/index.js" }, "bin/index.js"],
[{}, undefined],
[{ other: "bin/index.js" }, undefined],
])("%j", (bin, expected) => {
expect(getPrimaryBin(bin, repository)).toBe(expected);
});
});
6 changes: 6 additions & 0 deletions src/blocks/bin/getPrimaryBin.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
export function getPrimaryBin(
bin: Record<string, string | undefined> | string | undefined,
repository: string,
) {
return typeof bin === "object" ? bin[repository] : bin;
}
53 changes: 53 additions & 0 deletions src/blocks/blockPackageJson.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,59 @@ describe("blockPackageJson", () => {
`);
});

test("with object bin", () => {
const creation = testBlock(blockPackageJson, {
options: {
...options,
bin: "bin/index.js",
},
});

expect(creation).toMatchInlineSnapshot(`
{
"files": {
"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. 🧵","repository":{"type":"git","url":"git+https://github.com/test-owner/test-repository.git"},"license":"MIT","author":{"email":"[email protected]"},"type":"module","main":"lib/index.js","bin":"bin/index.js","files":["README.md","bin/index.js","package.json"]}",
},
"scripts": [
{
"commands": [
"pnpm install --no-frozen-lockfile",
],
"phase": 1,
},
],
}
`);
});

test("with string bin", () => {
const creation = testBlock(blockPackageJson, {
options: {
...options,
bin: {
absolute: "bin/absolute.js",
relative: "./bin/relative.js",
},
},
});

expect(creation).toMatchInlineSnapshot(`
{
"files": {
"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. 🧵","repository":{"type":"git","url":"git+https://github.com/test-owner/test-repository.git"},"license":"MIT","author":{"email":"[email protected]"},"type":"module","main":"lib/index.js","bin":{"absolute":"bin/absolute.js","relative":"./bin/relative.js"},"files":["README.md","bin/absolute.js","bin/relative.js","package.json"]}",
},
"scripts": [
{
"commands": [
"pnpm install --no-frozen-lockfile",
],
"phase": 1,
},
],
}
`);
});

test("offline mode", () => {
const creation = testBlock(blockPackageJson, {
offline: true,
Expand Down
12 changes: 11 additions & 1 deletion src/blocks/blockPackageJson.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export const blockPackageJson = base.createBlock({
packageManager: `pnpm@${options.pnpm}`,
}),
files: [
options.bin?.replace(/^\.\//, ""),
...collectBinFiles(options.bin),
...(addons.properties.files ?? []),
"package.json",
"README.md",
Expand Down Expand Up @@ -108,6 +108,16 @@ export const blockPackageJson = base.createBlock({
},
});

function collectBinFiles(bin: Record<string, string> | string | undefined) {
if (!bin) {
return [];
}

const files = typeof bin === "object" ? Object.values(bin) : [bin];

return files.map((file) => file.replace(/^\.\//, ""));
}

function removeRangePrefix(version: string) {
return version.replaceAll(/[\^~><=]/gu, "").split(" ")[0];
}
Expand Down
7 changes: 5 additions & 2 deletions src/blocks/blockTypeScript.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { base } from "../base.js";
import { getPackageDependencies } from "../data/packageData.js";
import { getPrimaryBin } from "./bin/getPrimaryBin.js";
import { blockDevelopmentDocs } from "./blockDevelopmentDocs.js";
import { blockExampleFiles } from "./blockExampleFiles.js";
import { blockGitHubActionsCI } from "./blockGitHubActionsCI.js";
Expand All @@ -15,6 +16,8 @@ export const blockTypeScript = base.createBlock({
name: "TypeScript",
},
produce({ options }) {
const primaryBin = getPrimaryBin(options.bin, options.repository);

return {
addons: [
blockDevelopmentDocs({
Expand Down Expand Up @@ -86,12 +89,12 @@ export * from "./types.js";
}),
blockVitest({ coverage: { include: ["src"] }, exclude: ["lib"] }),
blockVSCode({
debuggers: options.bin
debuggers: primaryBin
? [
{
name: "Debug Program",
preLaunchTask: "build",
program: options.bin,
program: primaryBin,
request: "launch",
skipFiles: ["<node_internals>/**"],
type: "node",
Expand Down
6 changes: 4 additions & 2 deletions src/blocks/blockVSCode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import sortKeys from "sort-keys";
import { z } from "zod";

import { base } from "../base.js";
import { getPrimaryBin } from "./bin/getPrimaryBin.js";
import { blockDevelopmentDocs } from "./blockDevelopmentDocs.js";

export const blockVSCode = base.createBlock({
Expand Down Expand Up @@ -30,6 +31,7 @@ export const blockVSCode = base.createBlock({
},
produce({ addons, options }) {
const { debuggers, extensions, settings, tasks } = addons;
const primaryBin = getPrimaryBin(options.bin, options.repository);

return {
addons: [
Expand All @@ -40,13 +42,13 @@ export const blockVSCode = base.createBlock({
],
sections: {
Building: {
innerSections: options.bin
innerSections: primaryBin
? [
{
contents: `
This repository includes a [VS Code launch configuration](https://code.visualstudio.com/docs/editor/debugging) for debugging.
To debug a \`bin\` app, add a breakpoint to your code, then run _Debug Program_ from the VS Code Debug panel (or press F5).
VS Code will automatically run the \`build\` task in the background before running \`${options.bin}\`.
VS Code will automatically run the \`build\` task in the background before running \`${primaryBin}\`.
`,
heading: "Built App Debugging",
},
Expand Down
2 changes: 1 addition & 1 deletion src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export interface AllContributorsData {

export interface PartialPackageData {
author?: string | { email: string; name: string };
bin?: string;
bin?: Record<string, string> | string;
dependencies?: Record<string, string>;
description?: string;
devDependencies?: Record<string, string>;
Expand Down