Skip to content

Commit ad51a41

Browse files
committed
fix: less scripts
1 parent 5a12fec commit ad51a41

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

package.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,10 @@
3131
"prepare": "npm run build",
3232
"build:clean": "rm -rf dist",
3333
"build:update-package-info": "tsx scripts/update-package-info.ts",
34-
"build:esm": "tsc --project tsconfig.esm.json",
35-
"build:cjs": "tsc --project tsconfig.cjs.json",
36-
"build:package-json": "echo '{\"type\":\"module\"}' > dist/package.json && echo '{\"type\":\"commonjs\"}' > dist/cjs/package.json",
34+
"build:esm": "tsc --project tsconfig.esm.json && echo '{\"type\":\"module\"}' > dist/package.json",
35+
"build:cjs": "tsc --project tsconfig.cjs.json && echo '{\"type\":\"commonjs\"}' > dist/cjs/package.json",
3736
"build:chmod": "chmod +x dist/index.js",
38-
"build": "npm run build:clean && npm run build:update-package-info && npm run build:esm && npm run build:cjs && npm run build:package-json && npm run build:chmod",
37+
"build": "npm run build:clean && npm run build:esm && npm run build:cjs && npm run build:chmod",
3938
"inspect": "npm run build && mcp-inspector -- dist/index.js",
4039
"prettier": "prettier",
4140
"check": "npm run build && npm run check:types && npm run check:lint && npm run check:format",

0 commit comments

Comments
 (0)