File tree 3 files changed +5
-26
lines changed
src/steps/writing/creation
3 files changed +5
-26
lines changed Original file line number Diff line number Diff line change @@ -160,26 +160,3 @@ exports[`expected file changes > knip.json 1`] = `
160
160
+ " project" : [" src/**/*.ts!" ]
161
161
} "
162
162
`;
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
- `;
Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ import packageData from "../package.json" assert { type: "json" };
9
9
const filesExpectedToBeChanged = [
10
10
"README.md" ,
11
11
"knip.json" ,
12
- "package.json" ,
13
12
".eslintignore" ,
14
13
".eslintrc.cjs" ,
15
14
".github/workflows/test.yml" ,
Original file line number Diff line number Diff line change 1
1
import { readFileSafeAsJson } from "../../../shared/readFileSafeAsJson.js" ;
2
- import { Options } from "../../../shared/types.js" ;
2
+ import { Options , PartialPackageData } from "../../../shared/types.js" ;
3
3
import { formatJson } from "./formatters/formatJson.js" ;
4
4
5
5
const devDependenciesToRemove = [
@@ -31,7 +31,9 @@ const devDependenciesToRemove = [
31
31
32
32
export async function writePackageJson ( options : Options ) {
33
33
const existingPackageJson =
34
- ( ( await readFileSafeAsJson ( "./package.json" ) ) as null | object ) ?? { } ;
34
+ ( ( await readFileSafeAsJson (
35
+ "./package.json" ,
36
+ ) ) as PartialPackageData | null ) ?? { } ;
35
37
36
38
return await formatJson ( {
37
39
// If we didn't already have a version, set it to 0.0.0
@@ -82,6 +84,7 @@ export async function writePackageJson(options: Options) {
82
84
url : `https://github.com/${ options . owner } /${ options . repository } ` ,
83
85
} ,
84
86
scripts : {
87
+ ...existingPackageJson . scripts ,
85
88
build : "tsup" ,
86
89
format : "prettier ." ,
87
90
lint : "eslint . .*js --max-warnings 0" ,
You can’t perform that action at this time.
0 commit comments