mnemosyne-core 2.1.2 → 2.1.3
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/cli/index.js +8 -8
- package/dist/cli/index.js.map +1 -1
- package/dist/cli/index.mjs +8 -8
- package/dist/cli/index.mjs.map +1 -1
- package/dist/index.js +5 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -5
- package/dist/index.mjs.map +1 -1
- package/dist/mcp/index.js +1 -1
- package/dist/mcp/index.js.map +1 -1
- package/dist/mcp/index.mjs +1 -1
- package/dist/mcp/index.mjs.map +1 -1
- package/dist/sdk/index.d.mts +4 -0
- package/dist/sdk/index.d.ts +4 -0
- package/dist/sdk/index.js +4 -0
- package/dist/sdk/index.js.map +1 -1
- package/dist/sdk/index.mjs +4 -0
- package/dist/sdk/index.mjs.map +1 -1
- package/dist/server/api.js +3 -3
- package/dist/server/api.js.map +1 -1
- package/dist/server/api.mjs +3 -3
- package/dist/server/api.mjs.map +1 -1
- package/dist/server/index.js +4 -4
- package/dist/server/index.js.map +1 -1
- package/dist/server/index.mjs +4 -4
- package/dist/server/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -207,7 +207,7 @@ function getVersion() {
|
|
|
207
207
|
const pkg = JSON.parse(readFileSync6(resolve9(process.cwd(), "package.json"), "utf-8"));
|
|
208
208
|
return pkg.version;
|
|
209
209
|
} catch {
|
|
210
|
-
return "2.1.
|
|
210
|
+
return "2.1.3";
|
|
211
211
|
}
|
|
212
212
|
}
|
|
213
213
|
}
|
|
@@ -5371,7 +5371,7 @@ function getVersion2() {
|
|
|
5371
5371
|
const pkg = JSON.parse(readFileSync6(resolve9(process.cwd(), "package.json"), "utf-8"));
|
|
5372
5372
|
return pkg.version;
|
|
5373
5373
|
} catch {
|
|
5374
|
-
return "2.1.
|
|
5374
|
+
return "2.1.3";
|
|
5375
5375
|
}
|
|
5376
5376
|
}
|
|
5377
5377
|
}
|
|
@@ -5954,7 +5954,7 @@ function getVersion3() {
|
|
|
5954
5954
|
const pkg = JSON.parse(readFileSync6(resolve9(process.cwd(), "package.json"), "utf-8"));
|
|
5955
5955
|
return pkg.version;
|
|
5956
5956
|
} catch {
|
|
5957
|
-
return "2.1.
|
|
5957
|
+
return "2.1.3";
|
|
5958
5958
|
}
|
|
5959
5959
|
}
|
|
5960
5960
|
}
|
|
@@ -7120,7 +7120,7 @@ var PKG_VERSION = (() => {
|
|
|
7120
7120
|
const pkg = JSON.parse(__require("fs").readFileSync(__require("path").resolve(__dirname, "../../package.json"), "utf-8"));
|
|
7121
7121
|
return pkg.version;
|
|
7122
7122
|
} catch {
|
|
7123
|
-
return "2.1.
|
|
7123
|
+
return "2.1.3";
|
|
7124
7124
|
}
|
|
7125
7125
|
})();
|
|
7126
7126
|
function handleHealth(store, pathname, method, res) {
|
|
@@ -7481,7 +7481,7 @@ var MnemosyneServer = class {
|
|
|
7481
7481
|
const wss = new import_websocket_server.default({ server: this.httpServer });
|
|
7482
7482
|
this.wsHandler = new WebSocketHandler(wss, this.store);
|
|
7483
7483
|
}
|
|
7484
|
-
const version = cfg?.server?.version || "2.1.
|
|
7484
|
+
const version = cfg?.server?.version || "2.1.3";
|
|
7485
7485
|
this.httpServer.listen(port, () => {
|
|
7486
7486
|
console.log(`Mnemosyne v${version} \u2014 port ${port}`);
|
|
7487
7487
|
console.log(`Dashboard: http://${host}:${port}/dashboard`);
|