Skip to content

Commit

Permalink
fix: correct the minimum required version of Node (#264)
Browse files Browse the repository at this point in the history
Changes:
- Node version requires all three major, minor, patch fields, so update minimum version from 10.0 to 10.0.0
  • Loading branch information
barrett-schonefeld authored Mar 16, 2021
1 parent d8e6909 commit 8b3bad4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cli-validator/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down

0 comments on commit 8b3bad4

Please sign in to comment.