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 0ecbb70 commit d86b9d4Copy full SHA for d86b9d4
packages/@vue/cli/bin/vue.js
@@ -19,6 +19,14 @@ function checkNodeVersion (wanted, id) {
19
20
checkNodeVersion(requiredVersion, 'vue-cli')
21
22
+if (semver.satisfies(process.version, '9.x')) {
23
+ console.log(chalk.red(
24
+ `You are using Node ${process.version}.\n` +
25
+ `Node.js 9.x has already reached end-of-life and will not be supported in future major releases.\n` +
26
+ `It's strongly recommended to use an active LTS version instead.`
27
+ ))
28
+}
29
+
30
const fs = require('fs')
31
const path = require('path')
32
const slash = require('slash')
0 commit comments