Commit fb2408ff authored by NGPixel's avatar NGPixel Committed by Nicolas Giard

fix: incorrect nodejs version check

parent 20a2e0e3
......@@ -80,10 +80,10 @@ module.exports = (port, spinner) => {
Promise.mapSeries([
() => {
const semver = require('semver')
if (!semver.satisfies(semver.clean(process.version), '>=4.6.0')) {
throw new Error('Node.js version is too old. Minimum is v4.6.0.')
if (!semver.satisfies(semver.clean(process.version), '>=6.9.0')) {
throw new Error('Node.js version is too old. Minimum is v6.6.0.')
}
return 'Node.js ' + process.version + ' detected. Minimum is v4.6.0.'
return 'Node.js ' + process.version + ' detected. Minimum is v6.9.0.'
},
() => {
return Promise.try(() => {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment