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.
Files changed (2) hide show
  1. package/dist/index.js +7 -0
  2. 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("");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-mcp-use-app",
3
- "version": "0.8.0-canary.2",
3
+ "version": "0.8.0",
4
4
  "type": "module",
5
5
  "description": "Create MCP-Use apps with one command",
6
6
  "author": "mcp-use, Inc.",