summaryrefslogtreecommitdiff
path: root/packages/create-astro/src/templates.ts
diff options
context:
space:
mode:
authorGravatar Nate Moore <natemoo-re@users.noreply.github.com> 2022-10-26 10:13:56 -0500
committerGravatar GitHub <noreply@github.com> 2022-10-26 10:13:56 -0500
commit04083762810a1a9e078a7e68edab945c8063b1ab (patch)
tree784baa969ba4f3a68f3420dc909135359a58f3cd /packages/create-astro/src/templates.ts
parentddf2f8390e8dcc64b44636524bdcddae977779f4 (diff)
downloadastro-04083762810a1a9e078a7e68edab945c8063b1ab.tar.gz
astro-04083762810a1a9e078a7e68edab945c8063b1ab.tar.zst
astro-04083762810a1a9e078a7e68edab945c8063b1ab.zip
[Create Astro] Improved prompts, template handling, Houston (#5088)
* feat(create-astro): add houston, improve prompts * refactor(create-astro): move to giget * chore: add changeset * chore: update lockfile * test(create-astro): update tests to match new output * chore: prefer named functions * fix: update template prompt * fix: update typescript message * chore: add explicit --skip-houston flag * test(create-astro): skip flaky typescript test Co-authored-by: Nate Moore <nate@astro.build>
Diffstat (limited to 'packages/create-astro/src/templates.ts')
-rw-r--r--packages/create-astro/src/templates.ts23
1 files changed, 3 insertions, 20 deletions
diff --git a/packages/create-astro/src/templates.ts b/packages/create-astro/src/templates.ts
index d379b5579..7dff7c587 100644
--- a/packages/create-astro/src/templates.ts
+++ b/packages/create-astro/src/templates.ts
@@ -1,22 +1,5 @@
export const TEMPLATES = [
- {
- title: 'Just the basics (recommended)',
- value: 'basics',
- },
- {
- title: 'Blog',
- value: 'blog',
- },
- {
- title: 'Portfolio',
- value: 'portfolio',
- },
- {
- title: 'Documentation Site',
- value: 'docs',
- },
- {
- title: 'Empty project',
- value: 'minimal',
- },
+ { value: 'basics', title: 'a few best practices (recommended)' },
+ { value: 'blog', title: 'a personal website starter kit' },
+ { value: 'minimal', title: 'an empty project' },
];