fix: align declared node version floor

This commit is contained in:
Advait Paliwal
2026-03-26 17:22:56 -07:00
parent 30d07246d1
commit 10c93a673b
10 changed files with 17 additions and 11 deletions

View File

@@ -1,5 +1,5 @@
#!/usr/bin/env node
const MIN_NODE_VERSION = "20.18.1";
const MIN_NODE_VERSION = "20.19.0";
function parseNodeVersion(version) {
const [major = "0", minor = "0", patch = "0"] = version.replace(/^v/, "").split(".");