fix: tighten release tooling checks

This commit is contained in:
Peter Steinberger
2026-05-15 21:20:58 +01:00
parent 0b7ff665f6
commit 333f65fc8a
11 changed files with 232 additions and 27 deletions

View File

@@ -9,7 +9,7 @@ import path from "node:path";
import { fileURLToPath } from "node:url";
const MIN_NODE_MAJOR = 22;
const MIN_NODE_MINOR = 12;
const MIN_NODE_MINOR = 16;
const MIN_NODE_VERSION = `${MIN_NODE_MAJOR}.${MIN_NODE_MINOR}`;
const parseNodeVersion = (rawVersion) => {