Skip to content

Commit

Permalink
feat: add more instructions on installation complete note (#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
beeman authored Feb 23, 2024
1 parent 5b0f6c8 commit 5da125a
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions packages/create-solana-dapp/bin/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,15 @@ async function main() {
}
},
)

outro(`Run \`cd ${directory.replace(process.cwd(), '.')}\` to get started.`)
const target = directory.replace(process.cwd(), '.')
note(
`That's it!\n
Change to your new directory and start developing:\n
cd ${target}\n
${pm} run dev`,
'Installation successful!',
)
outro('Good luck with your project!')
} else {
note(JSON.stringify(args, null, 2), 'Dry run, no changes were made.')
outro(`Would have created the workspace: ${args.name} with preset: ${args.preset}.`)
Expand Down

0 comments on commit 5da125a

Please sign in to comment.