mnemosyne-core 2.1.6 → 2.1.8

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.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.5";
210
+ return "2.1.8";
211
211
  }
212
212
  }
213
213
  }
@@ -5361,7 +5361,7 @@ function getVersion2() {
5361
5361
  const pkg = JSON.parse(readFileSync6(resolve9(process.cwd(), "package.json"), "utf-8"));
5362
5362
  return pkg.version;
5363
5363
  } catch {
5364
- return "2.1.5";
5364
+ return "2.1.8";
5365
5365
  }
5366
5366
  }
5367
5367
  }
@@ -5948,7 +5948,7 @@ function getVersion3() {
5948
5948
  const pkg = JSON.parse(readFileSync6(resolve9(process.cwd(), "package.json"), "utf-8"));
5949
5949
  return pkg.version;
5950
5950
  } catch {
5951
- return "2.1.5";
5951
+ return "2.1.8";
5952
5952
  }
5953
5953
  }
5954
5954
  }
@@ -7114,7 +7114,7 @@ var PKG_VERSION = (() => {
7114
7114
  const pkg = JSON.parse(__require("fs").readFileSync(__require("path").resolve(__dirname, "../../package.json"), "utf-8"));
7115
7115
  return pkg.version;
7116
7116
  } catch {
7117
- return "2.1.5";
7117
+ return "2.1.8";
7118
7118
  }
7119
7119
  })();
7120
7120
  function handleHealth(store, pathname, method, res) {
@@ -7479,7 +7479,7 @@ var MnemosyneServer = class {
7479
7479
  const wss = new import_websocket_server.default({ server: this.httpServer });
7480
7480
  this.wsHandler = new WebSocketHandler(wss, this.store);
7481
7481
  }
7482
- const version = cfg?.server?.version || "2.1.5";
7482
+ const version = cfg?.server?.version || "2.1.8";
7483
7483
  this.httpServer.listen(port, () => {
7484
7484
  console.log(`Mnemosyne v${version} \u2014 port ${port}`);
7485
7485
  console.log(`Dashboard: http://${host}:${port}/dashboard`);