mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 16:51:09 +08:00
CLI: REACT_NATIVE template CSF refactor
This commit is contained in:
parent
a979df3773
commit
cb1e01e2eb
@ -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;
|
||||
|
@ -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(() => {
|
||||
|
Loading…
x
Reference in New Issue
Block a user