mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 21:51:17 +08:00
move nextjs detection up
This commit is contained in:
parent
02259185c9
commit
95a5c806d5
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user