We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f003fc1 commit b3b0339Copy full SHA for b3b0339
packages/core/typescript/create-itk-wasm/src/generate/project.ts
@@ -53,6 +53,18 @@ function generateProject(
53
54
if (verbose) {
55
console.log(chalk.cyanBright('💖 Finished.'))
56
+ console.log(
57
+ `${chalk.cyanBright('\n📂 Directory: ')} ${project.directory}`
58
+ )
59
+ console.log(`${chalk.cyanBright('📦 Name: ')} ${project.name}`)
60
61
+ `${chalk.cyanBright('📄 Description: ')} ${project.packageDescription}`
62
63
+ console.log(chalk.magentaBright(`\n🚀 Next steps:`))
64
+ console.log(chalk.green(`\ncd ${project.directory}`))
65
+ console.log(chalk.green(`pnpm install`))
66
+ console.log(chalk.green(`pnpm build`))
67
+ console.log(chalk.green(`pnpm test\n`))
68
}
69
70
0 commit comments