fix: remove upper range node.js version check

This commit is contained in:
Nicolas Giard 2024-04-24 20:46:11 -04:00 committed by GitHub
parent 66ca18c499
commit abdd2f0d17
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -8,14 +8,6 @@ const { nanoid } = require('nanoid')
const { DateTime } = require('luxon')
const { gte } = require('semver')
// ----------------------------------------
// Check Node.js version
// ----------------------------------------
if (gte(process.version, '21.0.0')) {
console.error('You\'re using an unsupported Node.js version. Please read the requirements.')
process.exit(1)
}
// ----------------------------------------
// Init WIKI instance
// ----------------------------------------