mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 13:01:07 +08:00
fix: adjusted log messages for react native cli
This commit is contained in:
parent
461d677d1d
commit
2a752eaf33
@ -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();
|
||||
});
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user