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