Skip to content

Commit 6d92242

Browse files
committed
Fix build script order, bump to 0.3.3
1 parent 733e8cb commit 6d92242

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
"build": "npm run build -ws",
88
"version": "npm version -ws",
99
"postversion": "node scripts/updateTemplatesDeps.cjs",
10-
"version:major": "npm run build && npm run version major",
11-
"version:minor": "npm run build && npm run version minor",
12-
"version:patch": "npm run build && npm run version patch",
10+
"version:major": "npm run version major && npm run build",
11+
"version:minor": "npm run version minor && npm run build",
12+
"version:patch": "npm run version patch && npm run build",
1313
"publish": "npm publish -ws"
1414
},
1515
"devDependencies": {

packages/create-mcp-ts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-mcp-ts",
3-
"version": "0.3.2",
3+
"version": "0.3.3",
44
"description": "Create a new MCP server in TypeScript, batteries included.",
55
"author": "stephencme",
66
"license": "MIT",

packages/mcp-scripts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mcp-scripts",
3-
"version": "0.3.2",
3+
"version": "0.3.3",
44
"description": "The build tools that power create-mcp-ts projects",
55
"author": "stephencme",
66
"license": "MIT",

packages/mcp-ts-template-default/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mcp-ts-template-default",
3-
"version": "0.3.2",
3+
"version": "0.3.3",
44
"description": "Default project template for create-mcp-ts.",
55
"author": "stephencme",
66
"license": "MIT",
@@ -23,7 +23,7 @@
2323
},
2424
"devDependencies": {
2525
"@types/node": "^22.13.13",
26-
"mcp-scripts": "^0.3.2",
26+
"mcp-scripts": "^0.3.3",
2727
"typescript": "^5.8.2"
2828
}
2929
}

0 commit comments

Comments
 (0)