Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(create-gatsby): Use correct name in summary message #37809

Merged
merged 2 commits into from
Mar 30, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions packages/create-gatsby/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ ${center(colors.blueBright.bold.underline(`Welcome to Gatsby!`))}
message: `What would you like to call your site?`,
initial: `My Gatsby Site`,
format: (value: string): string => colors.cyan(value),
} as any)
})

npmSafeSiteName = makeNpmSafe(name)
siteName = name
Expand Down Expand Up @@ -315,7 +315,7 @@ ${colors.bold(`Thanks! Here's what we'll now do:`)}
reporter.info(
stripIndent`
${maybeUseEmoji(`🎉 `)}Your new Gatsby site ${colors.bold(
dirName
siteName
)} has been successfully created
at ${colors.bold(fullPath)}.
`
Expand All @@ -329,7 +329,7 @@ ${colors.bold(`Thanks! Here's what we'll now do:`)}
`)

reporter.info(`See all commands at\n
${colors.blueBright(`https://www.gatsbyjs.com/docs/gatsby-cli/`)}
${colors.blueBright(`https://www.gatsbyjs.com/docs/reference/gatsby-cli/`)}
`)

const siteHash = md5(fullPath)
Expand Down