From ed497dffa8ffdc4bcf80735299eec03530922f75 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nacho=20Codo=C3=B1er?= Date: Fri, 19 Sep 2025 16:33:32 +0200 Subject: [PATCH] rename `--coffee` flag to `--coffeescript` --- tools/cli/commands.js | 4 ++-- tools/cli/help.txt | 4 ++-- v3-docs/docs/cli/index.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/tools/cli/commands.js b/tools/cli/commands.js index 38946419ba..06da87125c 100644 --- a/tools/cli/commands.js +++ b/tools/cli/commands.js @@ -721,7 +721,7 @@ const SKELETON_INFO = { "tailwind": "To create an app using React and Tailwind", "chakra-ui": "To create an app Chakra UI and React", "solid": "To create a basic Solid app", - "coffee": "To create a basic CoffeeScript app", + "coffeescript": "To create a basic CoffeeScript app", "babel": "To create a React app with Babel support", }; @@ -745,7 +745,7 @@ main.registerCommand({ svelte: { type: Boolean }, tailwind: { type: Boolean }, 'chakra-ui': { type: Boolean }, - coffee: { type: Boolean }, + coffeescript: { type: Boolean }, solid: { type: Boolean }, legacy: { type: Boolean }, prototype: { type: Boolean }, diff --git a/tools/cli/help.txt b/tools/cli/help.txt index 03649f79ea..a329a8bcf8 100644 --- a/tools/cli/help.txt +++ b/tools/cli/help.txt @@ -152,7 +152,7 @@ Options: >>> create Create a new project. -Usage: meteor create [--release ] [--bare|--minimal|--full|--react|--vue|--apollo|--svelte|--blaze|--tailwind|--chakra-ui|--solid|--babel|--coffee] +Usage: meteor create [--release ] [--bare|--minimal|--full|--react|--vue|--apollo|--svelte|--blaze|--tailwind|--chakra-ui|--solid|--babel|--coffeescript] meteor create [--release ] --example [] meteor create [--release ] --from [] meteor create --list @@ -194,7 +194,7 @@ Options: --blaze Create a basic blaze-based app. --tailwind Create a basic react-based app, with tailwind configured. --chakra-ui Create a basic react-based app, with chakra-ui configured. - --coffee Create a basic coffescript app, with react. + --coffeescript Create a basic coffescript app, with react. --babel Create a React app with Babel support. --solid Create a basic solid-based app. --prototype Create a prototype app with the insecure & autopublish packages. Can be used along with other app commands diff --git a/v3-docs/docs/cli/index.md b/v3-docs/docs/cli/index.md index d895b1ac46..c3c31796c4 100644 --- a/v3-docs/docs/cli/index.md +++ b/v3-docs/docs/cli/index.md @@ -278,7 +278,7 @@ If you run `meteor create` without arguments, Meteor will launch an interactive | `--typescript` | React + TypeScript | [TypeScript Guide](https://guide.meteor.com/build-tool.html#typescript) | | `--tailwind` | React + Tailwind CSS | - | | `--chakra-ui` | React + Chakra UI | [Simple Tasks Example](https://github.com/fredmaiaarantes/simpletasks) | - | `--coffee` | CoffeeScript | - | + | `--coffeescript` | CoffeeScript | - | | `--babel` | React with Babel support | - | ### Project Structure Options