Skip to content

Commit 6169b6e

Browse files
Undo the halloween theme (#8959)
Co-authored-by: Nate Moore <[email protected]>
1 parent 262cef2 commit 6169b6e

File tree

3 files changed

+24
-26
lines changed

3 files changed

+24
-26
lines changed

.changeset/chilly-pillows-crash.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"create-astro": minor
3+
---
4+
5+
Undo the halloween theme and restore `fancy` behaviour

packages/create-astro/src/actions/context.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ export async function getContext(argv: string[]): Promise<Context> {
9494
projectName,
9595
template,
9696
ref: ref ?? 'latest',
97-
hat: random(['🎃', '👻', '🕯️']), //fancy ? random(['🎩', '🎩', '🎩', '🎩', '🎓', '👑', '🧢', '🍦']) : undefined,
97+
hat: fancy ? random(['🎩', '🎩', '🎩', '🎩', '🎓', '👑', '🧢', '🍦']) : undefined,
9898
yes,
9999
install: install ?? (noInstall ? false : undefined),
100100
git: git ?? (noGit ? false : undefined),

packages/create-astro/src/messages.ts

Lines changed: 18 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -39,31 +39,24 @@ export async function spinner(args: {
3939
export const title = (text: string) => align(label(text), 'end', 7) + ' ';
4040

4141
export const welcome = [
42-
// `Let's claim your corner of the internet.`,
43-
// `I'll be your assistant today.`,
44-
// `Let's build something awesome!`,
45-
// `Let's build something great!`,
46-
// `Let's build something fast!`,
47-
// `Let's build the web we want.`,
48-
// `Let's make the web weird!`,
49-
// `Let's make the web a better place!`,
50-
// `Let's create a new project!`,
51-
// `Let's create something unique!`,
52-
// `Time to build a new website.`,
53-
// `Time to build a faster website.`,
54-
// `Time to build a sweet new website.`,
55-
// `We're glad to have you on board.`,
56-
// `Keeping the internet weird since 2021.`,
57-
// `Initiating launch sequence...`,
58-
// `Initiating launch sequence... right... now!`,
59-
// `Awaiting further instructions.`,
60-
`Booo! Let's scare the interwebs!`,
61-
`Get ready to haunt the internet with Halloween vibes.`,
62-
`Harness the power of the web for your frightful ideas.`,
63-
`It's time to conjure up an online spooktacular masterpiece.`,
64-
`Prepare for a web of Halloween wonders to be woven.`,
65-
`Chills and thrills await as you embark on your web journey`,
66-
`The internet is about to get a whole lot creepier thanks to your new project.`,
42+
`Let's claim your corner of the internet.`,
43+
`I'll be your assistant today.`,
44+
`Let's build something awesome!`,
45+
`Let's build something great!`,
46+
`Let's build something fast!`,
47+
`Let's build the web we want.`,
48+
`Let's make the web weird!`,
49+
`Let's make the web a better place!`,
50+
`Let's create a new project!`,
51+
`Let's create something unique!`,
52+
`Time to build a new website.`,
53+
`Time to build a faster website.`,
54+
`Time to build a sweet new website.`,
55+
`We're glad to have you on board.`,
56+
`Keeping the internet weird since 2021.`,
57+
`Initiating launch sequence...`,
58+
`Initiating launch sequence... right... now!`,
59+
`Awaiting further instructions.`,
6760
];
6861

6962
export const getName = () =>

0 commit comments

Comments
 (0)