MrDMAdev
MrDMAdev

Reputation: 182

Upgrading react native from 0.24 to 0.26

I used the method described here https://facebook.github.io/react-native/docs/upgrading.html

Somehow I ended up on 0.27-rc1. Can someone prescribe a method to get off of the rc and on 0.26?

Thank you.

Upvotes: 0

Views: 90

Answers (1)

sodik
sodik

Reputation: 4683

something like that never happen to me - (as described in that guide) you install explicit version react native

npm install --save [email protected]

so, I would suggest you to delete react native from node_modules, revert any changes you made with your source control system and start again by installing proper version of RN.

Upvotes: 1

Related Questions