create-mcp-use-app 0.5.1-canary.2 → 0.5.1
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 +6 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -459,13 +459,15 @@ program.name("create-mcp-use-app").description("Create a new MCP server project"
|
|
|
459
459
|
console.log("");
|
|
460
460
|
console.log(chalk.bold("\u{1F680} To get started:"));
|
|
461
461
|
console.log(chalk.cyan(` cd ${sanitizedProjectName}`));
|
|
462
|
-
console.log(
|
|
463
|
-
chalk.cyan(` ${getInstallCommand(usedPackageManager)}`)
|
|
464
|
-
);
|
|
462
|
+
console.log(chalk.cyan(` ${getInstallCommand(usedPackageManager)}`));
|
|
465
463
|
console.log(chalk.cyan(` ${getDevCommand(usedPackageManager)}`));
|
|
466
464
|
console.log("");
|
|
467
465
|
console.log(chalk.bold("\u{1F4E4} To deploy:"));
|
|
468
|
-
console.log(
|
|
466
|
+
console.log(
|
|
467
|
+
chalk.cyan(
|
|
468
|
+
` ${usedPackageManager === "yarn" ? "yarn" : usedPackageManager === "pnpm" ? "pnpm" : "npm run"} deploy`
|
|
469
|
+
)
|
|
470
|
+
);
|
|
469
471
|
console.log("");
|
|
470
472
|
if (options.dev) {
|
|
471
473
|
console.log(
|