Make Core subspec use a Ruby string array for exclude_files
Summary: For consistency (and maybe correctness?) use an array instead of a string with spaces in it for the `exclude_paths` value in the Podspec. Closes https://github.com/facebook/react-native/pull/11664 Differential Revision: D4374863 fbshipit-source-id: b81773f418bd46d846bb935e038d240c98c0b71a
This commit is contained in:
parent
5df227f42c
commit
01af9ee8a7
|
@ -34,7 +34,7 @@ Pod::Spec.new do |s|
|
||||||
ss.dependency 'React/yoga'
|
ss.dependency 'React/yoga'
|
||||||
ss.dependency 'React/cxxreact'
|
ss.dependency 'React/cxxreact'
|
||||||
ss.source_files = "React/**/*.{c,h,m,mm,S}"
|
ss.source_files = "React/**/*.{c,h,m,mm,S}"
|
||||||
ss.exclude_files = "**/__tests__/*", "IntegrationTests/* ReactCommon/yoga/*"
|
ss.exclude_files = "**/__tests__/*", "IntegrationTests/*", "ReactCommon/yoga/*"
|
||||||
ss.frameworks = "JavaScriptCore"
|
ss.frameworks = "JavaScriptCore"
|
||||||
ss.libraries = "stdc++"
|
ss.libraries = "stdc++"
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue