vike
Version:
The Framework *You* Control - Next.js & Nuxt alternative for unprecedented flexibility and dependability.
11 lines (10 loc) • 369 B
JavaScript
export { assertNodeVersion };
import { isNodeJS } from './isNodeJS.js';
import { assertVersion } from './assertVersion.js';
// node_modules/vike/package.json#engines.node isn't enough as users can ignore it
function assertNodeVersion() {
if (!isNodeJS())
return;
const version = process.versions.node;
assertVersion('Node.js', version, '18.0.0');
}