You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
const isDot6 = major === 16 ? minor >= 6 : !(major < 16);
const isSupportedVersion = is16 && isDot6;
const versionText = bold(underline("v16.6 or higher"));
if (!isSupportedVersion) {
throw warn(
`Unsupported Node.js version detected (${process.version}). SnailyCADv4 requires version ${versionText}. See https://docs.snailycad.org/docs/errors/invalid-node-version`,