mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-16 19:04:48 +00:00
13 lines
561 B
TypeScript
13 lines
561 B
TypeScript
import { engines } from '../../package.json'
|
|
|
|
export async function checkEngines () {
|
|
const satisfies = await import('semver/functions/satisfies.js')
|
|
.then(r => r.default || r as any as typeof import('semver/functions/satisfies.js')) // npm/node-semver#381
|
|
const currentNode = process.versions.node
|
|
const nodeRange = engines.node
|
|
|
|
if (!satisfies(currentNode, nodeRange)) {
|
|
console.warn(`Current version of Node.js (\`${currentNode}\`) is unsupported and might cause issues.\n Please upgrade to a compatible version (${nodeRange}).`)
|
|
}
|
|
}
|