CLI: REACT fixes

This commit is contained in:
Michael Shilman 2019-10-12 10:15:40 +08:00
parent 3a41a0dc2b
commit e7364a435b
2 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
import {
getVersions,
getVersionedPackages,
getPackageJson,
writePackageJson,
getBabelDependencies,
@ -18,7 +18,7 @@ export default async (npmOptions, { storyFormat = 'csf' }) => {
packages.push('@storybook/addon-docs');
}
const versionedPackages = await getVersions(npmOptions, ...packages);
const versionedPackages = await getVersionedPackages(npmOptions, ...packages);
copyTemplate(__dirname, storyFormat);

View File

@ -128,7 +128,7 @@ const installStorybook = (projectType, options) => {
.then(end);
case types.REACT_PROJECT:
return reactGenerator(npmOptions)
return reactGenerator(npmOptions, generatorOptions)
.then(commandLog('Adding storybook support to your "React" library'))
.then(end);