-
Notifications
You must be signed in to change notification settings - Fork 47
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
update react native projects #5
Conversation
"presets": ["babel-preset-expo"], | ||
"env": { | ||
"development": { | ||
"plugins": ["transform-react-jsx-source"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Had some issues with the javascript side of the project, removed this following this suggestion, maybe an update was needed instead but I assume this won't be relevant after switch to typescript.
"plugins": ["transform-react-jsx-source"] | ||
} | ||
} | ||
"presets": ["module:metro-react-native-babel-preset"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this might not be needed, seems to also work with babel-preset-expo
@@ -1,5 +1,5 @@ | |||
{ | |||
"name": "MysterionReact", | |||
"name": "MysteriumVPN", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updating native projects would fail because it would look for project with the legacy name instead of the correct one.
It's hard to review it without react-native experience.. Does it work on android as well? |
Why this is needed => ios project didn't work on xcode because reason
What I did => ran
react-native-git-upgrade
and fixed conflicts.@donce @shroomist