mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
Added a cli flag to allow passing custom config to the metro bundler
This commit is contained in:
parent
6d1aafa668
commit
3b6003add0
@ -96,6 +96,22 @@ module.exports = ({ platform }) => ({
|
||||
});
|
||||
```
|
||||
|
||||
## Seamless Typescript Integration
|
||||
|
||||
*Note: These instructions are for react-native >= 0.45 and the (default) [metro](https://github.com/facebook/metro) bundler*
|
||||
|
||||
For seamless type integration (no intermediate build step) we use the custom rn cli config feature and the [react-native-typescript-transformer](https://github.com/ds300/react-native-typescript-transformer) project
|
||||
|
||||
First follow the instructions [here](https://github.com/ds300/react-native-typescript-transformer#step-1-install).
|
||||
|
||||
Now update your storybook `package.json` script to the following
|
||||
|
||||
"scripts": {
|
||||
"storybook": "storybook --metro-config $PWD/rn-cli.config.js"
|
||||
}
|
||||
|
||||
The metro bundler requires an absolute path to the config. The above setup assumes the `rn-cli.config.js` is in the root of your project or next to your `package.json`
|
||||
|
||||
## Learn More
|
||||
|
||||
Check the `docs` directory in this repo for more advanced setup guides and other info.
|
||||
|
6
app/react-native/src/bin/storybook-start.js
vendored
6
app/react-native/src/bin/storybook-start.js
vendored
@ -13,6 +13,7 @@ program
|
||||
.option('--platform <ios|android|all>', 'build platform-specific build')
|
||||
.option('-s, --secured', 'whether server is running on https')
|
||||
.option('-c, --config-dir [dir-name]', 'storybook config directory')
|
||||
.option('--metro-config [relative-config-path]', 'Metro Bundler Custom config')
|
||||
.option('-e, --environment [environment]', 'DEVELOPMENT/PRODUCTION environment for webpack')
|
||||
.option('-r, --reset-cache', 'reset react native packager')
|
||||
.option('--skip-packager', 'run only storybook server')
|
||||
@ -76,6 +77,11 @@ if (!program.skipPackager) {
|
||||
}
|
||||
|
||||
let cliCommand = 'react-native start';
|
||||
|
||||
if (program.metroConfig) {
|
||||
cliCommand += ` --config ${program.metroConfig}`;
|
||||
}
|
||||
|
||||
if (program.haul) {
|
||||
const platform = program.platform || 'all';
|
||||
cliCommand = `haul start --config ${program.haul} --platform ${platform}`;
|
||||
|
Loading…
x
Reference in New Issue
Block a user