You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Scanning 1106 folders for symlinks in {path_to_root_project}/node_modules (19ms)
React Native Storybook started on => http://localhost:7007/
Scanning 1106 folders for symlinks in {path_to_root_project}/node_modules (25ms)
ENOENT: no such file or directory, stat '{path_to_root_project}/storybook'
webpack built 9c91edb89274e4fcca8d in 2967ms
How can I specify the path to the storybook/ folder I want to pack and launch?
For example:
// for first app
storybook start -p 7007 --folder apps/FirstReactNativeApp/storybook
// for second app
storybook start -p 7007 --folder apps/SecondReactNativeApp/storybook
The text was updated successfully, but these errors were encountered:
When I ran yarn storybook to execute the npm script storybook start -p 7007 under an app project, it doesn't find the storybook command in the node_modules of that app project.
I have multiple React Native apps in one monorepo:
when I use
yarn storybook
, it search and use the scripts in mypackage.json
:but it shows errors in my console:
How can I specify the path to the
storybook/
folder I want to pack and launch?For example:
The text was updated successfully, but these errors were encountered: