зеркало из https://github.com/github/docs.git
18 строки
572 B
JavaScript
18 строки
572 B
JavaScript
import semver from 'semver'
|
|
import path from 'path'
|
|
import readFileAsync from './readfile-async.js'
|
|
|
|
const packageFile = JSON.parse(await readFileAsync(path.join(process.cwd(), './package.json')))
|
|
const { engines } = packageFile
|
|
|
|
/* istanbul ignore next */
|
|
if (!semver.satisfies(process.version, engines.node)) {
|
|
console.error(
|
|
`\n\nYou're using Node.js ${process.version.replace(/^v/, '')} but this project requires ${
|
|
engines.node
|
|
}`
|
|
)
|
|
console.error('Visit nodejs.org to download an installer that meets these requirements.\n\n')
|
|
process.exit(1)
|
|
}
|