1
0
mirror of synced 2025-12-21 02:46:50 -05:00
Files
docs/lib/check-node-version.js
Vanessa Yuen 3df90fc9b8 Hello git history spelunker!
Are you looking for something? Here is all of the GitHub Docs history in one single commit. Enjoy! 🎉
2020-09-27 14:10:11 +02:00

10 lines
372 B
JavaScript

const semver = require('semver')
const { engines } = require('../package.json')
/* istanbul ignore next */
if (!semver.satisfies(process.version, engines.node)) {
console.error(`\n\nYou're using Node.js ${process.version}, but ${engines.node} is required`)
console.error('Visit nodejs.org to download an installer for the latest LTS version.\n\n')
process.exit()
}