Refine CLI flag descriptions for clarity (#8545)
* Refine CLI flag descriptions for clarity * Update README.md * Update README.md * Update README.md * Update help.ts * Update packages/create-astro/src/actions/help.ts Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> * Update packages/create-astro/README.md Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> * Update packages/create-astro/README.md Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> * Update README.md --------- Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com> Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca>
This commit is contained in:
parent
4f2bf2156f
commit
139b0f54d9
2 changed files with 16 additions and 13 deletions
|
@ -46,14 +46,17 @@ npm create astro@latest my-astro-project -- --template cassidoo/shopify-react-as
|
||||||
May be provided in place of prompts
|
May be provided in place of prompts
|
||||||
|
|
||||||
| Name | Description |
|
| Name | Description |
|
||||||
| :--------------------------- | :----------------------------------------------------- |
|
| :--------------------------- | :--------------------------------------------------------- |
|
||||||
|
| `--help` (`-h`) | Display available flags. |
|
||||||
| `--template <name>` | Specify your template. |
|
| `--template <name>` | Specify your template. |
|
||||||
| `--install` / `--no-install` | Install dependencies (or not). |
|
| `--install` / `--no-install` | Install dependencies (or not). |
|
||||||
| `--git` / `--no-git` | Initialize git repo (or not). |
|
| `--git` / `--no-git` | Initialize git repo (or not). |
|
||||||
| `--yes` (`-y`) | Skip all prompt by accepting defaults. |
|
| `--yes` (`-y`) | Skip all prompts by accepting defaults. |
|
||||||
| `--no` (`-n`) | Skip all prompt by declining defaults. |
|
| `--no` (`-n`) | Skip all prompts by declining defaults. |
|
||||||
| `--dry-run` | Walk through steps without executing. |
|
| `--dry-run` | Walk through steps without executing. |
|
||||||
| `--skip-houston` | Skip Houston animation. |
|
| `--skip-houston` | Skip Houston animation. |
|
||||||
|
| `--ref` | Specify an Astro branch (default: latest). |
|
||||||
|
| `--fancy` | Enable full Unicode support for Windows. |
|
||||||
| `--typescript <option>` | TypeScript option: `strict` / `strictest` / `relaxed`. |
|
| `--typescript <option>` | TypeScript option: `strict` / `strictest` / `relaxed`. |
|
||||||
|
|
||||||
[examples]: https://github.com/withastro/astro/tree/main/examples
|
[examples]: https://github.com/withastro/astro/tree/main/examples
|
||||||
|
|
|
@ -11,12 +11,12 @@ export function help() {
|
||||||
['--template <name>', 'Specify your template.'],
|
['--template <name>', 'Specify your template.'],
|
||||||
['--install / --no-install', 'Install dependencies (or not).'],
|
['--install / --no-install', 'Install dependencies (or not).'],
|
||||||
['--git / --no-git', 'Initialize git repo (or not).'],
|
['--git / --no-git', 'Initialize git repo (or not).'],
|
||||||
['--yes (-y)', 'Skip all prompt by accepting defaults.'],
|
['--yes (-y)', 'Skip all prompts by accepting defaults.'],
|
||||||
['--no (-n)', 'Skip all prompt by declining defaults.'],
|
['--no (-n)', 'Skip all prompts by declining defaults.'],
|
||||||
['--dry-run', 'Walk through steps without executing.'],
|
['--dry-run', 'Walk through steps without executing.'],
|
||||||
['--skip-houston', 'Skip Houston animation.'],
|
['--skip-houston', 'Skip Houston animation.'],
|
||||||
['--ref', 'Choose astro branch (default: latest).'],
|
['--ref', 'Choose astro branch (default: latest).'],
|
||||||
['--fancy', 'Enable full unicode support for Windows.'],
|
['--fancy', 'Enable full Unicode support for Windows.'],
|
||||||
['--typescript <option>', 'TypeScript option: strict | strictest | relaxed.'],
|
['--typescript <option>', 'TypeScript option: strict | strictest | relaxed.'],
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue