fix: adjusted log messages for react native cli

This commit is contained in:
Daniel Williams 2020-09-09 22:51:44 +01:00
parent 461d677d1d
commit 2a752eaf33

View File

@ -79,8 +79,7 @@ const installStorybook = (projectType: ProjectType, options: CommandOptions): Pr
logger.log();
};
const REACT_NATIVE_DISCUSSION =
'https://github.com/storybookjs/react-native/blob/master/app/react-native/docs/manual-setup.md';
const REACT_NATIVE_REPO = 'https://github.com/storybookjs/react-native';
const runGenerator: () => Promise<void> = () => {
switch (projectType) {
@ -131,9 +130,9 @@ const installStorybook = (projectType: ProjectType, options: CommandOptions): Pr
.then(() => {
logger.log(chalk.red('NOTE: installation is not 100% automated.'));
logger.log(`To quickly run Storybook, replace contents of your app entry with:\n`);
codeLog(["export default from './storybook';"]);
logger.log('\n For more in depth setup instructions, see:\n');
logger.log(chalk.cyan(REACT_NATIVE_DISCUSSION));
codeLog(["export {default} from './storybook';"]);
logger.log('\n For more in information, see the github readme:\n');
logger.log(chalk.cyan(REACT_NATIVE_REPO));
logger.log();
});
}