rename --coffee flag to --coffeescript

This commit is contained in:
Nacho Codoñer
2025-09-19 16:33:32 +02:00
parent b2c7ae3c25
commit ed497dffa8
3 changed files with 5 additions and 5 deletions

View File

@@ -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 },

View File

@@ -152,7 +152,7 @@ Options:
>>> create
Create a new project.
Usage: meteor create [--release <release>] [--bare|--minimal|--full|--react|--vue|--apollo|--svelte|--blaze|--tailwind|--chakra-ui|--solid|--babel|--coffee] <path>
Usage: meteor create [--release <release>] [--bare|--minimal|--full|--react|--vue|--apollo|--svelte|--blaze|--tailwind|--chakra-ui|--solid|--babel|--coffeescript] <path>
meteor create [--release <release>] --example <example_name> [<path>]
meteor create [--release <release>] --from <git_url> [<path>]
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

View File

@@ -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