Created
January 12, 2017 17:05
-
-
Save adambisek/01afeced6961582984d188f6ae2659d2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import semver from 'semver'; | |
import { engines } from './package'; | |
const version = engines.node; | |
if (!semver.satisfies(process.version, version)) { | |
console.log(`Required node version ${version} not satisfied with current version ${process.version}.`); | |
process.exit(1); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment