Skip to content

Commit

Permalink
fix(create-gatsby): Use correct name in summary message (gatsbyjs#37809)
Browse files Browse the repository at this point in the history
* actual fix

* other misc changes
  • Loading branch information
LekoArts committed Mar 30, 2023
1 parent f013bc3 commit 4608d51
Showing 1 changed file with 3 additions and 3 deletions.
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

0 comments on commit 4608d51

Please sign in to comment.