CLI: Preact template CSF refactor

This commit is contained in:
Michael Shilman 2019-10-12 09:34:04 +08:00
parent 996b7df30a
commit 256556fcc6
8 changed files with 4 additions and 5 deletions

View File

@ -1,14 +1,13 @@
import path from 'path';
import fse from 'fs-extra';
import {
getVersions,
getPackageJson,
writePackageJson,
getBabelDependencies,
installDependencies,
copyTemplate,
} from '../../lib/helpers';
export default async npmOptions => {
export default async (npmOptions, { storyFormat = 'csf' }) => {
const [storybookVersion, actionsVersion, linksVersion, addonsVersion] = await getVersions(
npmOptions,
'@storybook/preact',
@ -17,7 +16,7 @@ export default async npmOptions => {
'@storybook/addons'
);
fse.copySync(path.resolve(__dirname, 'template/'), '.', { overwrite: true });
copyTemplate(__dirname, storyFormat);
const packageJson = getPackageJson();

View File

@ -178,7 +178,7 @@ const installStorybook = (projectType, options) => {
.then(end);
case types.PREACT:
return preactGenerator(npmOptions)
return preactGenerator(npmOptions, generatorOptions)
.then(commandLog('Adding storybook support to your "Preact" app'))
.then(end);