@ikhono/mcp 0.2.6 → 0.3.0
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.
- package/dist/index.js +1 -1
- package/dist/server.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -170,7 +170,7 @@ async function handleRate(client2, args2) {
|
|
|
170
170
|
// src/version.ts
|
|
171
171
|
import { createRequire } from "module";
|
|
172
172
|
function getVersion() {
|
|
173
|
-
if (true) return "0.
|
|
173
|
+
if (true) return "0.3.0";
|
|
174
174
|
const require2 = createRequire(import.meta.url);
|
|
175
175
|
return require2("../package.json").version;
|
|
176
176
|
}
|
package/dist/server.js
CHANGED
|
@@ -92,7 +92,7 @@ async function handleRate(client, args) {
|
|
|
92
92
|
// src/version.ts
|
|
93
93
|
import { createRequire } from "module";
|
|
94
94
|
function getVersion() {
|
|
95
|
-
if (true) return "0.
|
|
95
|
+
if (true) return "0.3.0";
|
|
96
96
|
const require2 = createRequire(import.meta.url);
|
|
97
97
|
return require2("../package.json").version;
|
|
98
98
|
}
|