mnemosyne-core 2.1.8 → 2.1.9
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/dashboard/index.html +66 -9
- 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/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/server/index.js
CHANGED
|
@@ -3817,7 +3817,7 @@ function getVersion2() {
|
|
|
3817
3817
|
const pkg = JSON.parse(readFileSync5(resolve7(process.cwd(), "package.json"), "utf-8"));
|
|
3818
3818
|
return pkg.version;
|
|
3819
3819
|
} catch {
|
|
3820
|
-
return "2.1.
|
|
3820
|
+
return "2.1.9";
|
|
3821
3821
|
}
|
|
3822
3822
|
}
|
|
3823
3823
|
}
|
|
@@ -4368,7 +4368,7 @@ function getVersion() {
|
|
|
4368
4368
|
const pkg = JSON.parse(readFileSync5(resolve7(process.cwd(), "package.json"), "utf-8"));
|
|
4369
4369
|
return pkg.version;
|
|
4370
4370
|
} catch {
|
|
4371
|
-
return "2.1.
|
|
4371
|
+
return "2.1.9";
|
|
4372
4372
|
}
|
|
4373
4373
|
}
|
|
4374
4374
|
}
|
|
@@ -5500,7 +5500,7 @@ var PKG_VERSION = (() => {
|
|
|
5500
5500
|
const pkg = JSON.parse(require("fs").readFileSync(require("path").resolve(__dirname, "../../package.json"), "utf-8"));
|
|
5501
5501
|
return pkg.version;
|
|
5502
5502
|
} catch {
|
|
5503
|
-
return "2.1.
|
|
5503
|
+
return "2.1.9";
|
|
5504
5504
|
}
|
|
5505
5505
|
})();
|
|
5506
5506
|
function handleHealth(store, pathname, method, res) {
|
|
@@ -7200,7 +7200,7 @@ var MnemosyneServer = class {
|
|
|
7200
7200
|
const wss = new import_websocket_server.default({ server: this.httpServer });
|
|
7201
7201
|
this.wsHandler = new WebSocketHandler(wss, this.store);
|
|
7202
7202
|
}
|
|
7203
|
-
const version = cfg?.server?.version || "2.1.
|
|
7203
|
+
const version = cfg?.server?.version || "2.1.9";
|
|
7204
7204
|
this.httpServer.listen(port, () => {
|
|
7205
7205
|
console.log(`Mnemosyne v${version} \u2014 port ${port}`);
|
|
7206
7206
|
console.log(`Dashboard: http://${host}:${port}/dashboard`);
|