Skip to content

Commit f950924

Browse files
chore: simplify build scripts in package.json
- Removed the --clean flag from the build script for a more straightforward build process. - Maintained the watch functionality in the build:watch script for continuous development.
1 parent 8ca531a commit f950924

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
"start": "concurrently \"npm run dev:local\" \"npm run inspector:local\"",
1010
"dev:local": "npm run build:watch",
1111
"inspector:local": "npx @modelcontextprotocol/inspector -- nodemon --env-file=.env -q --watch dist dist/index.js",
12-
"build": "tsup src/index.ts --dts --clean",
13-
"build:watch": "tsup src/index.ts --dts --watch"
12+
"build": "tsup src/index.ts",
13+
"build:watch": "tsup src/index.ts --watch"
1414
},
1515
"dependencies": {
1616
"@modelcontextprotocol/sdk": "1.23.0",

0 commit comments

Comments
 (0)