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 e852855 commit 402bc46Copy full SHA for 402bc46
packages/@vue/cli/bin/vue.js
@@ -197,10 +197,10 @@ program
197
program
198
.arguments('<command>')
199
.action((cmd) => {
200
- suggestCommands(cmd)
201
program.outputHelp()
202
console.log(` ` + chalk.red(`Unknown command ${chalk.yellow(cmd)}.`))
203
console.log()
+ suggestCommands(cmd)
204
})
205
206
// add some useful info on help
@@ -242,7 +242,7 @@ function suggestCommands (cmd) {
242
243
const suggestion = didYouMean(cmd, availableCommands)
244
if (suggestion) {
245
- console.log(chalk.cyan(`Warning: ${chalk.yellow(`Did you mean ${suggestion} ?`)}`))
+ console.log(` ` + chalk.red(`Did you mean ${chalk.yellow(suggestion)}?.`))
246
}
247
248
0 commit comments