Removed now unnecessary version checking (#4815)

This commit is contained in:
Frank Elsinga
2024-08-24 18:38:50 +02:00
committed by GitHub
parent 4b68a86524
commit 0ddf35e7b5
6 changed files with 6 additions and 63 deletions

View File

@@ -19,7 +19,7 @@ const nodeVersion = process.versions.node;
// Get the required Node.js version from package.json
const requiredNodeVersions = require("../package.json").engines.node;
const bannedNodeVersions = " < 14 || 20.0.* || 20.1.* || 20.2.* || 20.3.* ";
const bannedNodeVersions = " < 18 || 20.0.* || 20.1.* || 20.2.* || 20.3.* ";
console.log(`Your Node.js version: ${nodeVersion}`);
const semver = require("semver");