mnemosyne-core 2.1.1 → 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/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.0";
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.0";
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.0";
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.0";
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.0";
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`);