mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
Fix detection of type: module when initializing storybook
This commit is contained in:
parent
64ede83903
commit
653a9ffe65
@ -12,6 +12,7 @@ export type GeneratorOptions = {
|
||||
language: SupportedLanguage;
|
||||
builder: Builder;
|
||||
linkable: boolean;
|
||||
commonJs: boolean;
|
||||
};
|
||||
|
||||
export interface FrameworkOptions {
|
||||
@ -67,7 +68,7 @@ const hasInteractiveStories = (framework: SupportedFrameworks) =>
|
||||
export async function baseGenerator(
|
||||
packageManager: JsPackageManager,
|
||||
npmOptions: NpmOptions,
|
||||
{ language, builder }: GeneratorOptions,
|
||||
{ language, builder, commonJs }: GeneratorOptions,
|
||||
framework: SupportedFrameworks,
|
||||
options: FrameworkOptions = defaultOptions
|
||||
) {
|
||||
@ -150,7 +151,7 @@ export async function baseGenerator(
|
||||
framework: frameworkPackage,
|
||||
addons: [...addons, ...stripVersions(extraAddons)],
|
||||
extensions,
|
||||
commonJs: options.commonJs,
|
||||
commonJs,
|
||||
...mainOptions,
|
||||
});
|
||||
if (addComponents) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user