move nextjs detection up

This commit is contained in:
Yann Braga 2022-05-18 08:22:14 +02:00
parent 02259185c9
commit 95a5c806d5

View File

@ -114,6 +114,13 @@ export function detectBuilder(packageManager: JsPackageManager) {
return CoreBuilder.Vite;
}
const nextJSVersion = detectNextJS(packageManager);
if (nextJSVersion) {
if (nextJSVersion >= 11) {
return CoreBuilder.Webpack5;
}
}
const webpackVersion = detectWebpack(packageManager);
if (webpackVersion) {
if (webpackVersion <= 4) {
@ -124,13 +131,6 @@ export function detectBuilder(packageManager: JsPackageManager) {
}
}
const nextJSVersion = detectNextJS(packageManager);
if (nextJSVersion) {
if (nextJSVersion >= 11) {
return CoreBuilder.Webpack5;
}
}
// Fallback to webpack4
return CoreBuilder.Webpack4;
}