mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
Updated instruction message in setup.
Added few comments in template. Only notifies about not found app name if you use React Native Vanilla.
This commit is contained in:
parent
5b78c5cd46
commit
fde314b31e
@ -29,6 +29,9 @@ export default async npmOptions => {
|
|||||||
|
|
||||||
// set correct project name on entry files if possible
|
// set correct project name on entry files if possible
|
||||||
const dirname = shell.ls('-d', 'ios/*.xcodeproj').stdout;
|
const dirname = shell.ls('-d', 'ios/*.xcodeproj').stdout;
|
||||||
|
|
||||||
|
// Only notify about app name if running in React Native vanilla (Expo projects do not have ios directory)
|
||||||
|
if (dirname) {
|
||||||
const projectName =
|
const projectName =
|
||||||
dirname && dirname.slice('ios/'.length, dirname.length - '.xcodeproj'.length - 1);
|
dirname && dirname.slice('ios/'.length, dirname.length - '.xcodeproj'.length - 1);
|
||||||
if (projectName) {
|
if (projectName) {
|
||||||
@ -40,6 +43,7 @@ export default async npmOptions => {
|
|||||||
)
|
)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
const packageJson = getPackageJson();
|
const packageJson = getPackageJson();
|
||||||
|
|
||||||
|
@ -8,7 +8,12 @@ configure(() => {
|
|||||||
require('./stories');
|
require('./stories');
|
||||||
}, module);
|
}, module);
|
||||||
|
|
||||||
|
// Refer to https://github.com/storybooks/storybook/tree/master/app/react-native#start-command-parameters
|
||||||
|
// To find allowed options for getStorybookUI
|
||||||
const StorybookUIRoot = getStorybookUI({});
|
const StorybookUIRoot = getStorybookUI({});
|
||||||
|
|
||||||
|
// If you are using React Native vanilla and after installation you don't see your app name here, write it manually.
|
||||||
|
// If you use Expo you can safely remove this line.
|
||||||
AppRegistry.registerComponent('%APP_NAME%', () => StorybookUIRoot);
|
AppRegistry.registerComponent('%APP_NAME%', () => StorybookUIRoot);
|
||||||
|
|
||||||
export default StorybookUIRoot;
|
export default StorybookUIRoot;
|
||||||
|
@ -103,7 +103,7 @@ export default function(options, pkg) {
|
|||||||
logger.log(chalk.red('NOTE: installation is not 100% automated.'));
|
logger.log(chalk.red('NOTE: installation is not 100% automated.'));
|
||||||
logger.log(`To quickly run storybook, replace contents of your app entry with:\n`);
|
logger.log(`To quickly run storybook, replace contents of your app entry with:\n`);
|
||||||
codeLog(["export default from './storybook';"]);
|
codeLog(["export default from './storybook';"]);
|
||||||
logger.log('\nFor a more complete discussion of options, see:\n');
|
logger.log('\n For more in depth setup instructions, see:\n');
|
||||||
logger.log(chalk.cyan(REACT_NATIVE_DISCUSSION));
|
logger.log(chalk.cyan(REACT_NATIVE_DISCUSSION));
|
||||||
logger.log();
|
logger.log();
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user