mirror of
https://github.com/withastro/astro.git
synced 2025-01-22 18:41:55 -05:00
feat: make Houston wear scary hats for spooky season (#8846)
* feat: make Houston wear scary hats for spooky season * chore: add new phrasing to scary Houston * chore: create changeset
This commit is contained in:
parent
d25b00d914
commit
3baab3d93b
3 changed files with 31 additions and 19 deletions
5
.changeset/small-beers-laugh.md
Normal file
5
.changeset/small-beers-laugh.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
"create-astro": minor
|
||||||
|
---
|
||||||
|
|
||||||
|
feat: make Houston wear scary hats and say new things for spooky season
|
|
@ -94,7 +94,7 @@ export async function getContext(argv: string[]): Promise<Context> {
|
||||||
projectName,
|
projectName,
|
||||||
template,
|
template,
|
||||||
ref: ref ?? 'latest',
|
ref: ref ?? 'latest',
|
||||||
hat: fancy ? random(['🎩', '🎩', '🎩', '🎩', '🎓', '👑', '🧢', '🍦']) : undefined,
|
hat: random(['🎃', '👻', '🕯️']), //fancy ? random(['🎩', '🎩', '🎩', '🎩', '🎓', '👑', '🧢', '🍦']) : undefined,
|
||||||
yes,
|
yes,
|
||||||
install: install ?? (noInstall ? false : undefined),
|
install: install ?? (noInstall ? false : undefined),
|
||||||
git: git ?? (noGit ? false : undefined),
|
git: git ?? (noGit ? false : undefined),
|
||||||
|
|
|
@ -39,24 +39,31 @@ export async function spinner(args: {
|
||||||
export const title = (text: string) => align(label(text), 'end', 7) + ' ';
|
export const title = (text: string) => align(label(text), 'end', 7) + ' ';
|
||||||
|
|
||||||
export const welcome = [
|
export const welcome = [
|
||||||
`Let's claim your corner of the internet.`,
|
// `Let's claim your corner of the internet.`,
|
||||||
`I'll be your assistant today.`,
|
// `I'll be your assistant today.`,
|
||||||
`Let's build something awesome!`,
|
// `Let's build something awesome!`,
|
||||||
`Let's build something great!`,
|
// `Let's build something great!`,
|
||||||
`Let's build something fast!`,
|
// `Let's build something fast!`,
|
||||||
`Let's build the web we want.`,
|
// `Let's build the web we want.`,
|
||||||
`Let's make the web weird!`,
|
// `Let's make the web weird!`,
|
||||||
`Let's make the web a better place!`,
|
// `Let's make the web a better place!`,
|
||||||
`Let's create a new project!`,
|
// `Let's create a new project!`,
|
||||||
`Let's create something unique!`,
|
// `Let's create something unique!`,
|
||||||
`Time to build a new website.`,
|
// `Time to build a new website.`,
|
||||||
`Time to build a faster website.`,
|
// `Time to build a faster website.`,
|
||||||
`Time to build a sweet new website.`,
|
// `Time to build a sweet new website.`,
|
||||||
`We're glad to have you on board.`,
|
// `We're glad to have you on board.`,
|
||||||
`Keeping the internet weird since 2021.`,
|
// `Keeping the internet weird since 2021.`,
|
||||||
`Initiating launch sequence...`,
|
// `Initiating launch sequence...`,
|
||||||
`Initiating launch sequence... right... now!`,
|
// `Initiating launch sequence... right... now!`,
|
||||||
`Awaiting further instructions.`,
|
// `Awaiting further instructions.`,
|
||||||
|
`Booo! Let's scare the interwebs!`,
|
||||||
|
`Get ready to haunt the internet with Halloween vibes.`,
|
||||||
|
`Harness the power of the web for your frightful ideas.`,
|
||||||
|
`It's time to conjure up an online spooktacular masterpiece.`,
|
||||||
|
`Prepare for a web of Halloween wonders to be woven.`,
|
||||||
|
`Chills and thrills await as you embark on your web journey`,
|
||||||
|
`The internet is about to get a whole lot creepier thanks to your new project.`,
|
||||||
];
|
];
|
||||||
|
|
||||||
export const getName = () =>
|
export const getName = () =>
|
||||||
|
|
Loading…
Reference in a new issue