create-mcp-use-app 0.8.0-canary.2 → 0.8.0
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 +7 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -288,6 +288,13 @@ program.name("create-mcp-use-app").description("Create a new MCP server project"
|
|
|
288
288
|
listTemplates();
|
|
289
289
|
process.exit(0);
|
|
290
290
|
}
|
|
291
|
+
if (options.dev && options.canary) {
|
|
292
|
+
console.error(chalk.red("\u274C Cannot use --dev and --canary together"));
|
|
293
|
+
console.error(
|
|
294
|
+
chalk.yellow(" Please choose only one dependency mode")
|
|
295
|
+
);
|
|
296
|
+
process.exit(1);
|
|
297
|
+
}
|
|
291
298
|
let selectedTemplate = options.template;
|
|
292
299
|
if (!projectName) {
|
|
293
300
|
console.log("");
|