Skip to content

Commit 1ddff3f

Browse files
committed
fix: remove redundant prepare script from package.json and create.ts
1 parent a0e5a38 commit 1ddff3f

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

package.json

+2-3
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@
2121
},
2222
"scripts": {
2323
"build": "tsc",
24-
"watch": "tsc --watch",
25-
"prepare": "npm run build"
24+
"watch": "tsc --watch"
2625
},
2726
"engines": {
2827
"node": ">=20.0.0"
@@ -62,4 +61,4 @@
6261
"jest": "^29.7.0",
6362
"ts-jest": "^29.1.2"
6463
}
65-
}
64+
}

src/cli/project/create.ts

-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ export async function createProject(name?: string) {
5656
files: ["dist"],
5757
scripts: {
5858
build: "tsc && mcp-build",
59-
prepare: "npm run build",
6059
watch: "tsc --watch",
6160
start: "node dist/index.js"
6261
},

0 commit comments

Comments
 (0)