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 0a0a65f commit 10c253aCopy full SHA for 10c253a
packages/@vue/cli/bin/vue.js
@@ -65,6 +65,10 @@ program
65
.option('-b, --bare', 'Scaffold project without beginner instructions')
66
.action((name, cmd) => {
67
const options = cleanArgs(cmd)
68
+
69
+ if (minimist(process.argv.slice(3))._.length > 1) {
70
+ console.log(chalk.yellow('\n Info: You provided more than one argument. The first one will be used as the app\'s name, the rest are ignored.'))
71
+ }
72
// --git makes commander to default git to true
73
if (process.argv.includes('-g') || process.argv.includes('--git')) {
74
options.forceGit = true
0 commit comments