0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-16 21:46:22 -05:00

fix semver check (#9937)

This commit is contained in:
Fred K. Schott 2024-02-01 13:25:11 -08:00 committed by GitHub
parent 4467441896
commit 5d08a69f83
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -20,8 +20,8 @@ async function main() {
const version = process.versions.node; const version = process.versions.node;
// Fast-path for higher Node.js versions // Fast-path for higher Node.js versions
if ((parseInt(version) || 0) <= skipSemverCheckIfAbove) { if ((parseInt(version) || 0) <= skipSemverCheckIfAbove) {
const semver = await import('semver');
try { try {
const semver = await import('semver');
if (!semver.satisfies(version, engines)) { if (!semver.satisfies(version, engines)) {
await errorNodeUnsupported(); await errorNodeUnsupported();
return; return;