-
Notifications
You must be signed in to change notification settings - Fork 24.4k
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
Use autolink script in template on iOS #27984
Conversation
@@ -43,7 +43,7 @@ def use_react_native! (options={}) | |||
pod 'React-jsinspector', :path => "#{prefix}/ReactCommon/jsinspector" | |||
pod 'ReactCommon/callinvoker', :path => "#{prefix}/ReactCommon" | |||
pod 'ReactCommon/turbomodule/core', :path => "#{prefix}/ReactCommon" | |||
pod 'Yoga', :path => "#{prefix}/ReactCommon/yoga" | |||
pod 'Yoga', :path => "#{prefix}/ReactCommon/yoga", :modular_headers => true |
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.
Updated this to match what was in the template before.
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.
yay
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.
@cpojer is landing this pull request. If you are a Facebook employee, you can view this diff on Phabricator.
This pull request was successfully merged by @janicduplessis in a35efb9. When will my fix make it into a release? | Upcoming Releases |
Summary: We use this for RN tester but it is not currently included in npm releases. It cleans up the podfile a lot and will make adding / removing pods easier in the future since it won't require users to update their project. ## Changelog [iOS] [Added] - Use autolink script in template on iOS Pull Request resolved: facebook#27984 Test Plan: Not sure if there is a way to end to end test this but I've been using this autolink script in my fork for a while. Differential Revision: D19787729 Pulled By: cpojer fbshipit-source-id: b843ea723085830f13e8f0149833d1beb1efdfac
Summary
We use this for RN tester but it is not currently included in npm releases. It cleans up the podfile a lot and will make adding / removing pods easier in the future since it won't require users to update their project.
Changelog
[iOS] [Added] - Use autolink script in template on iOS
Test Plan
Not sure if there is a way to end to end test this but I've been using this autolink script in my fork for a while.