From 15158d6805709ab22db916a0bd0b6b7065448f39 Mon Sep 17 00:00:00 2001 From: Barrett Schonefeld Date: Tue, 16 Mar 2021 11:06:08 -0500 Subject: [PATCH] fix: correct the minimum required version of Node Changes: - Node version requires all three major, minor, patch fields, so update minimum version from 10.0 to 10.0.0 --- src/cli-validator/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cli-validator/index.js b/src/cli-validator/index.js index 599ca014a..66fdd8c38 100755 --- a/src/cli-validator/index.js +++ b/src/cli-validator/index.js @@ -2,8 +2,8 @@ // this module enforces that the user is running a supported version // of Node by exiting the process if the version is less than -// the passed in argument (currently 8.9.x) -require('./utils/checkVersion')('10.0'); +// the passed in argument (currently 10.0.0) +require('./utils/checkVersion')('10.0.0'); require('./utils/updateNotifier'); const program = require('./utils/modified-commander');