Default sb init w/ "web components" to use cjs

This commit is contained in:
Kyle Gach 2021-09-28 12:31:49 -06:00
parent b59d90c3b4
commit 69f523d782

View File

@ -206,7 +206,10 @@ const installStorybook = (projectType: ProjectType, options: CommandOptions): Pr
.then(end);
case ProjectType.WEB_COMPONENTS:
return webComponentsGenerator(packageManager, npmOptions, generatorOptions)
return webComponentsGenerator(packageManager, npmOptions, {
...generatorOptions,
commonJs: true,
})
.then(commandLog('Adding Storybook support to your "web components" app'))
.then(end);