CLI: REACT_NATIVE template CSF refactor

This commit is contained in:
Michael Shilman 2019-10-12 09:46:40 +08:00
parent a979df3773
commit cb1e01e2eb
11 changed files with 4 additions and 6 deletions

View File

@ -1,5 +1,3 @@
import fse from 'fs-extra';
import path from 'path';
import shell from 'shelljs';
import chalk from 'chalk';
import {
@ -9,9 +7,10 @@ import {
paddedLog,
getBabelDependencies,
installDependencies,
copyTemplate,
} from '../../lib/helpers';
export default async (npmOptions, installServer) => {
export default async (npmOptions, installServer, { storyFormat = 'csf' }) => {
const [storybookVersion, addonsVersion, actionsVersion, linksVersion] = await getVersions(
npmOptions,
'@storybook/react-native',
@ -20,8 +19,7 @@ export default async (npmOptions, installServer) => {
'@storybook/addon-links'
);
// copy all files from the template directory to project directory
fse.copySync(path.resolve(__dirname, 'template/'), '.', { overwrite: true });
copyTemplate(__dirname, storyFormat);
// set correct project name on entry files if possible
const dirname = shell.ls('-d', 'ios/*.xcodeproj').stdout;

View File

@ -104,7 +104,7 @@ const installStorybook = (projectType, options) => {
},
])
)
.then(({ server }) => reactNativeGenerator(npmOptions, server))
.then(({ server }) => reactNativeGenerator(npmOptions, server, generatorOptions))
.then(commandLog('Adding storybook support to your "React Native" app'))
.then(end)
.then(() => {