mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 21:51:17 +08:00
cleanup
This commit is contained in:
parent
fdcaf03a31
commit
9791f4e1f7
@ -104,29 +104,21 @@ export const newFrameworks: Fix<NewFrameworkRunOptions> = {
|
||||
}
|
||||
|
||||
if (!semver.gte(storybookCoerced, '7.0.0')) {
|
||||
console.log('lower than 7.0.0!');
|
||||
return null;
|
||||
}
|
||||
|
||||
// If in the future the eslint plugin has a framework option, using main to extract the framework field will be very useful
|
||||
const main = await readConfig(mainConfig);
|
||||
|
||||
if (!main) {
|
||||
console.log('no main');
|
||||
return null;
|
||||
}
|
||||
|
||||
const frameworkPackage = main.getFieldValue(['framework']) as keyof typeof packagesMap;
|
||||
const builder = main.getFieldValue(['core', 'builder']);
|
||||
|
||||
if (!frameworkPackage || !builder) {
|
||||
console.log('no framework or no builder, skipping');
|
||||
return null;
|
||||
}
|
||||
|
||||
const supportedPackages = Object.keys(packagesMap);
|
||||
if (!supportedPackages.includes(frameworkPackage)) {
|
||||
console.log('no supported package, skipping');
|
||||
return null;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user