@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.
- package/dist/index.js +1 -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("
|
|
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();
|