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

create-redwood-app messages: moved app start commands to end ... closes #2128 #2278

Merged
merged 2 commits into from Apr 21, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 5 additions & 5 deletions packages/create-redwood-app/src/create-redwood-app.js
Expand Up @@ -174,11 +174,6 @@ new Listr(
'',
style.success('Thanks for trying out Redwood!'),
'',
`We've created your app in '${style.green(newAppDir)}'`,
`Enter the directory and run '${style.green(
'yarn rw dev'
)}' to start the development server.`,
'',
` ⚡️ ${style.redwood(
'Get up and running fast with this Quick Start guide'
)}: https://redwoodjs.com/docs/quick-start`,
Expand Down Expand Up @@ -215,6 +210,11 @@ new Listr(
' ❖ Find a Good First Issue'
)}: https://redwoodjs.com/good-first-issue`,
'',
`${style.header(`Fire it up!`)} 🚀`,
'',
`${style.redwood(` > ${style.green(`cd ${targetDir}`)}`)}`,
`${style.redwood(` > ${style.green(`yarn rw dev`)}`)}`,
'',
].map((item) => console.log(item))
})
.catch((e) => {
Expand Down