Merge pull request #19253 from storybookjs/fix/svelte-generator-e2e

fix svelte e2e test: generate preview file with js extension always
This commit is contained in:
Norbert de Langen 2022-09-26 16:20:07 +03:00 committed by GitHub
commit c04e571c1c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -205,7 +205,7 @@ export async function baseGenerator(
: {}),
});
await configurePreview(renderer, options.commonJs);
await configurePreview(renderer);
if (addComponents) {
await copyComponents(renderer, language);

View File

@ -64,9 +64,9 @@ const frameworkToPreviewParts: Partial<Record<SupportedRenderers, any>> = {
},
};
export async function configurePreview(framework: SupportedRenderers, commonJs: boolean) {
export async function configurePreview(framework: SupportedRenderers) {
const { prefix = '', extraParameters = '' } = frameworkToPreviewParts[framework] || {};
const previewPath = `./.storybook/preview.${commonJs ? 'cjs' : 'js'}`;
const previewPath = `./.storybook/preview.js`;
// If the framework template included a preview then we have nothing to do
if (await fse.pathExists(previewPath)) {