@leanmcp/cli 0.4.3 → 0.4.4

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -2916,11 +2916,10 @@ program.command("dev").description("Start development server with UI hot-reload
2916
2916
  trackCommand("dev");
2917
2917
  devCommand();
2918
2918
  });
2919
- program.command("build").description("Compile TypeScript to JavaScript").action(() => {
2919
+ program.command("build").description("Build UI components and compile TypeScript for production").action(() => {
2920
2920
  trackCommand("build");
2921
2921
  buildCommand();
2922
2922
  });
2923
- program.command("build").description("Build UI components and compile TypeScript for production").action(buildCommand);
2924
2923
  program.command("start").description("Build UI components and start production server").action(() => {
2925
2924
  trackCommand("start");
2926
2925
  startCommand();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leanmcp/cli",
3
- "version": "0.4.3",
3
+ "version": "0.4.4",
4
4
  "description": "Command-line interface for scaffolding LeanMCP projects",
5
5
  "bin": {
6
6
  "leanmcp": "bin/leanmcp.js"