Skip to content

Commit f7c5561

Browse files
fix: allow overriding package.json type (#2110)
## PR Checklist - [x] Addresses an existing open issue: fixes #2109 - [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 🎁
1 parent d8bb6d3 commit f7c5561

File tree

2 files changed

+28
-1
lines changed

2 files changed

+28
-1
lines changed

src/blocks/blockPackageJson.test.ts

+27
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,33 @@ describe("blockPackageJson", () => {
131131
`);
132132
});
133133

134+
test("with addons adding type", () => {
135+
const creation = testBlock(blockPackageJson, {
136+
addons: {
137+
properties: {
138+
type: "commonjs",
139+
},
140+
},
141+
options,
142+
});
143+
144+
expect(creation).toMatchInlineSnapshot(`
145+
{
146+
"files": {
147+
"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"},"author":{"email":"[email protected]"},"type":"commonjs","files":["README.md","package.json"],"engines":{"node":">=20.12.0"}}",
148+
},
149+
"scripts": [
150+
{
151+
"commands": [
152+
"pnpm install --no-frozen-lockfile",
153+
],
154+
"phase": 1,
155+
},
156+
],
157+
}
158+
`);
159+
});
160+
134161
test("with addons adding overlapping files", () => {
135162
const creation = testBlock(blockPackageJson, {
136163
addons: {

src/blocks/blockPackageJson.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ export const blockPackageJson = base.createBlock({
4242
"package.json": sortPackageJson(
4343
JSON.stringify(
4444
removeUndefinedObjects({
45+
type: "module",
4546
...options.packageData,
4647
...addons.properties,
4748
author: { email: options.email.npm, name: options.author },
@@ -75,7 +76,6 @@ export const blockPackageJson = base.createBlock({
7576
...options.packageData?.scripts,
7677
...addons.properties.scripts,
7778
},
78-
type: "module",
7979
version: options.version ?? "0.0.0",
8080
}),
8181
),

0 commit comments

Comments
 (0)