Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: move podspec to root
  • Loading branch information
Naturalclar committed Jun 24, 2022
commit 893356b8520ffd29dad4bce6f3e5d47689381bc9
4 changes: 2 additions & 2 deletions ios/RNTextSize.podspec → RNTextSize.podspec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
require 'json'
package = JSON.parse(File.read('../package.json'))
package = JSON.parse(File.read('./package.json'))

Pod::Spec.new do |s|
s.name = 'RNTextSize'
Expand All @@ -14,7 +14,7 @@ Pod::Spec.new do |s|
s.author = package['author']
s.platform = :ios, '9.0'
s.source = { :git => package['repository'], :tag => "v#{s.version}" }
s.source_files = '*.{h,m}'
s.source_files = 'ios/*.{h,m}'
s.requires_arc = true

s.dependency 'React'
Expand Down