-
Hey community, I'm currently working on a custom React Native CLI, and one of the features is Storybook integration. Following the latest guides, I've set up an option to install both Storybook for React Native (SBRN) and Storybook for React (SBR) one after another. However, when I select the Storybook option, it installs SBRN successfully. Still, it then proceeds with installing SBR, which has its own CLI. This causes an issue because, at the end of its setup, SBR starts Storybook web, interfering with my CLI processes. If i use the default one I've noticed that the command causing the trouble is:
This initializes React Storybook and automatically starts the Storybook web, which clashes with my CLI. Question: Any insights or suggestions would be greatly appreciated! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
A guy from discord told me to add CI=true npx sb@latest init --type react and this made the trick. Now it doesn`t start the web automatically after installation and its enough for me! |
Beta Was this translation helpful? Give feedback.
A guy from discord told me to add CI=true npx sb@latest init --type react and this made the trick. Now it doesn`t start the web automatically after installation and its enough for me!