@loghead/core 0.1.14 → 0.1.15

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_main.js CHANGED
@@ -20,7 +20,7 @@ async function main() {
20
20
  console.log("Initializing database...");
21
21
  await (0, migrate_1.migrate)();
22
22
  })
23
- .command("start", "Start API Server", {}, async () => {
23
+ .command(["start", "$0"], "Start API Server", {}, async () => {
24
24
  console.log("Ensuring database is initialized...");
25
25
  await (0, migrate_1.migrate)(false); // Run migrations silently
26
26
  const token = await auth.getOrCreateMcpToken();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@loghead/core",
3
- "version": "0.1.14",
3
+ "version": "0.1.15",
4
4
  "description": "Core API and Database for Loghead",
5
5
  "repository": {
6
6
  "type": "git",
package/src/cli_main.ts CHANGED
@@ -18,7 +18,7 @@ async function main() {
18
18
  console.log("Initializing database...");
19
19
  await migrate();
20
20
  })
21
- .command("start", "Start API Server", {}, async () => {
21
+ .command(["start", "$0"], "Start API Server", {}, async () => {
22
22
  console.log("Ensuring database is initialized...");
23
23
  await migrate(false); // Run migrations silently
24
24