Add missing flags to help action (#6352)
* add missing flags to help action * add proper changeset --------- Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com>
This commit is contained in:
parent
4d75396362
commit
c87c16cfad
2 changed files with 8 additions and 0 deletions
5
.changeset/purple-crews-agree.md
Normal file
5
.changeset/purple-crews-agree.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
'create-astro': patch
|
||||
---
|
||||
|
||||
Add missing flags to help command
|
|
@ -7,6 +7,7 @@ export function help() {
|
|||
headline: 'Scaffold Astro projects.',
|
||||
tables: {
|
||||
Flags: [
|
||||
['--help (-h)', 'See all available flags.'],
|
||||
['--template <name>', 'Specify your template.'],
|
||||
['--install / --no-install', 'Install dependencies (or not).'],
|
||||
['--git / --no-git', 'Initialize git repo (or not).'],
|
||||
|
@ -14,6 +15,8 @@ export function help() {
|
|||
['--no (-n)', 'Skip all prompt by declining defaults.'],
|
||||
['--dry-run', 'Walk through steps without executing.'],
|
||||
['--skip-houston', 'Skip Houston animation.'],
|
||||
['--ref', 'Choose astro branch (default: latest).'],
|
||||
['--fancy', 'Enable full unicode support for Windows.'],
|
||||
['--typescript <option>', 'TypeScript option: strict | strictest | relaxed.'],
|
||||
],
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue