claude-launchpad 0.7.0 → 0.7.2

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.js CHANGED
@@ -2611,6 +2611,8 @@ function createMemoryCommand() {
2611
2611
  log.error("Memory system is not installed. Run `claude-launchpad memory` first.");
2612
2612
  return;
2613
2613
  }
2614
+ const { requireMemoryDeps } = await import("./require-deps-EHWR6TVD.js");
2615
+ await requireMemoryDeps();
2614
2616
  const { startTui } = await import("./tui-R25NTQ4K.js");
2615
2617
  await startTui();
2616
2618
  return;
@@ -2633,10 +2635,12 @@ function createMemoryCommand() {
2633
2635
  log.info("Skipped.");
2634
2636
  return;
2635
2637
  }
2636
- const { runInstall } = await import("./install-65P6LMUN.js");
2638
+ const { runInstall } = await import("./install-EQEBGXQE.js");
2637
2639
  await runInstall({});
2638
2640
  } else {
2639
- const { runStats } = await import("./stats-FYAK7KZW.js");
2641
+ const { requireMemoryDeps } = await import("./require-deps-EHWR6TVD.js");
2642
+ await requireMemoryDeps();
2643
+ const { runStats } = await import("./stats-ZKET3Q4E.js");
2640
2644
  await runStats({});
2641
2645
  }
2642
2646
  });
@@ -2665,7 +2669,7 @@ function createMemoryCommand() {
2665
2669
  }
2666
2670
 
2667
2671
  // src/cli.ts
2668
- var program = new Command5().name("claude-launchpad").description("CLI toolkit that makes Claude Code setups measurably good").version("0.7.0", "-v, --version").action(async () => {
2672
+ var program = new Command5().name("claude-launchpad").description("CLI toolkit that makes Claude Code setups measurably good").version("0.7.2", "-v, --version").action(async () => {
2669
2673
  const hasConfig = await fileExists(join11(process.cwd(), "CLAUDE.md")) || await fileExists(join11(process.cwd(), ".claude", "settings.json"));
2670
2674
  if (hasConfig) {
2671
2675
  await program.commands.find((c) => c.name() === "doctor")?.parseAsync([], { from: "user" });