Skip to content

Commit fc4e7e5

Browse files
fix: preserve existing package.json scripts (#1252)
## PR Checklist - [x] Addresses an existing open issue: fixes #1226 - [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 Changes `package.json` creation to preserve any existing `scripts`.
1 parent 7793c80 commit fc4e7e5

File tree

3 files changed

+5
-26
lines changed

3 files changed

+5
-26
lines changed

script/__snapshots__/migrate-test-e2e.js.snap

-23
Original file line numberDiff line numberDiff line change
@@ -160,26 +160,3 @@ exports[`expected file changes > knip.json 1`] = `
160160
+ "project": ["src/**/*.ts!"]
161161
}"
162162
`;
163-
164-
exports[`expected file changes > package.json 1`] = `
165-
"--- a/package.json
166-
+++ b/package.json
167-
@@ ... @@
168-
"scripts": {
169-
"build": "tsup",
170-
"format": "prettier .",
171-
- "initialize": "tsx ./bin/index.js --mode initialize",
172-
"lint": "eslint . .*js --max-warnings 0",
173-
"lint:knip": "knip",
174-
"lint:md": "markdownlint \\"**/*.md\\" \\".github/**/*.md\\" --rules sentences-per-line",
175-
@@ ... @@
176-
"prepare": "husky install",
177-
"should-semantic-release": "should-semantic-release --verbose",
178-
"test": "vitest",
179-
- "test:create": "node script/create-test-e2e.js",
180-
- "test:initialize": "node script/initialize-test-e2e.js",
181-
- "test:migrate": "vitest run -r script/",
182-
"tsc": "tsc"
183-
},
184-
"lint-staged": {"
185-
`;

script/migrate-test-e2e.js

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ import packageData from "../package.json" assert { type: "json" };
99
const filesExpectedToBeChanged = [
1010
"README.md",
1111
"knip.json",
12-
"package.json",
1312
".eslintignore",
1413
".eslintrc.cjs",
1514
".github/workflows/test.yml",

src/steps/writing/creation/writePackageJson.ts

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { readFileSafeAsJson } from "../../../shared/readFileSafeAsJson.js";
2-
import { Options } from "../../../shared/types.js";
2+
import { Options, PartialPackageData } from "../../../shared/types.js";
33
import { formatJson } from "./formatters/formatJson.js";
44

55
const devDependenciesToRemove = [
@@ -31,7 +31,9 @@ const devDependenciesToRemove = [
3131

3232
export async function writePackageJson(options: Options) {
3333
const existingPackageJson =
34-
((await readFileSafeAsJson("./package.json")) as null | object) ?? {};
34+
((await readFileSafeAsJson(
35+
"./package.json",
36+
)) as PartialPackageData | null) ?? {};
3537

3638
return await formatJson({
3739
// If we didn't already have a version, set it to 0.0.0
@@ -82,6 +84,7 @@ export async function writePackageJson(options: Options) {
8284
url: `https://github.com/${options.owner}/${options.repository}`,
8385
},
8486
scripts: {
87+
...existingPackageJson.scripts,
8588
build: "tsup",
8689
format: "prettier .",
8790
lint: "eslint . .*js --max-warnings 0",

0 commit comments

Comments
 (0)