summaryrefslogtreecommitdiff
path: root/packages/create-astro/src
diff options
context:
space:
mode:
authorGravatar Kacper PotyraƂa <kacper.potyrala@gmail.com> 2023-02-24 23:17:28 +0100
committerGravatar GitHub <noreply@github.com> 2023-02-24 16:17:28 -0600
commitc87c16cfaddea3a05af87c3258d57ef1a31516f7 (patch)
tree094e2ac63b34093e04ca680a79e75ef9206f6410 /packages/create-astro/src
parent4d7539636245951a0151088da963989ed51087b0 (diff)
downloadastro-c87c16cfaddea3a05af87c3258d57ef1a31516f7.tar.gz
astro-c87c16cfaddea3a05af87c3258d57ef1a31516f7.tar.zst
astro-c87c16cfaddea3a05af87c3258d57ef1a31516f7.zip
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>
Diffstat (limited to 'packages/create-astro/src')
-rw-r--r--packages/create-astro/src/actions/help.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/packages/create-astro/src/actions/help.ts b/packages/create-astro/src/actions/help.ts
index 1c972aaca..c03735b18 100644
--- a/packages/create-astro/src/actions/help.ts
+++ b/packages/create-astro/src/actions/help.ts
@@ -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.'],
],
},