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
red(`Qwik requires Node.js 16.8 or higher. You are currently running Node.js ${version}.`)
);
process.exit(1);
} else if (Number(majorVersion) === 16) {
if (Number(minorVersion) < 8) {
console.warn(
yellow(
`Node.js 16.8 or higher is recommended. You are currently running Node.js ${version}.`
)
);
}
} else if (Number(majorVersion) === 18) {
if (Number(minorVersion) < 11) {
console.error(
red(
`Node.js 18.11 or higher is REQUIRED. From Node 18.0.0 to 18.11.0, there is a bug preventing correct behavior of Qwik. You are currently running Node.js ${version}. https://github.com/QwikDev/qwik/issues/3035`
)
);
}
}
}
export { createAppFacade as createApp, runCreateCli, runCreateInteractiveCli };