fa-mcp-sdk 0.4.81 → 0.4.84

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -54,7 +54,7 @@
54
54
  "dependencies": {
55
55
  "@modelcontextprotocol/sdk": "^1.29.0",
56
56
  "dotenv": "^17.4.1",
57
- "fa-mcp-sdk": "^0.4.81"
57
+ "fa-mcp-sdk": "^0.4.84"
58
58
  },
59
59
  "devDependencies": {
60
60
  "@types/express": "^5.0.6",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "fa-mcp-sdk",
3
3
  "productName": "FA MCP SDK",
4
- "version": "0.4.81",
4
+ "version": "0.4.84",
5
5
  "description": "Core infrastructure and templates for building Model Context Protocol (MCP) servers with TypeScript",
6
6
  "type": "module",
7
7
  "main": "dist/core/index.js",
@@ -47,7 +47,6 @@ function pause(msg = 'Press Enter to continue ...') {
47
47
 
48
48
  async function abort(msg) {
49
49
  console.error(`${c.r}${msg || '**** ERROR ****'}${c[0]}`);
50
- await pause();
51
50
  process.exit(0);
52
51
  }
53
52
 
@@ -93,7 +92,6 @@ async function main() {
93
92
  console.log(
94
93
  `${c.y}**** git branch should be ${c.m}{${EXPECTED_BRANCH}}${c.y}, current: ${c.m}${branchName}${c.y} ****${c[0]}`,
95
94
  );
96
- await pause();
97
95
  process.exit(0);
98
96
  }
99
97
 
@@ -123,7 +121,7 @@ async function main() {
123
121
  }
124
122
 
125
123
  run('npm publish');
126
- await pause();
124
+ process.exit(0);
127
125
  }
128
126
 
129
127
  main();