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
With RN, I always only use yarn start to start the metro bundler, and go to XCode and go to Product / Perform Action / Run without building. This saves 1-2 minutes of build time that yarn run:ios does.
You should include a normal yarn start script by default (generated by using create-xp-app), to make it more familiar to RN devs switching to RN-XP :)
I guess yarn run rn-cli start is the same, but still..
The text was updated successfully, but these errors were encountered:
I’m not sure this should be recommended, it’s an optimization but for me anyway it breaks ios9 (which must have a bundle in place / cannot use the dev server) if it were enabled by default. For people that want performance you should set the environment variable SKIP_BUNDLING to achieve the performance boost while still maintaining a “works everywhere” default stance facebook/react-native#14731
With RN, I always only use
yarn start
to start the metro bundler, and go to XCode and go toProduct / Perform Action / Run without building
. This saves 1-2 minutes of build time thatyarn run:ios
does.You should include a normal
yarn start
script by default (generated by using create-xp-app), to make it more familiar to RN devs switching to RN-XP :)I guess
yarn run rn-cli start
is the same, but still..The text was updated successfully, but these errors were encountered: