react-native-custom-splash 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-custom-splash",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "A custom splash screen module for React Native with native iOS and Android support, fully compatible with Expo",
5
5
  "main": "src/index.js",
6
6
  "types": "src/index.d.ts",
@@ -1,6 +1,6 @@
1
1
  require "json"
2
2
 
3
- package = JSON.parse(File.read(File.join(__dir__, "../package.json")))
3
+ package = JSON.parse(File.read(File.join(__dir__, "package.json")))
4
4
 
5
5
  Pod::Spec.new do |s|
6
6
  s.name = "RNCustomSplash"
@@ -12,7 +12,7 @@ Pod::Spec.new do |s|
12
12
  s.platforms = { :ios => "13.0" }
13
13
  s.source = { :git => package["repository"]["url"], :tag => "#{s.version}" }
14
14
 
15
- s.source_files = "*.{h,m,mm,swift}"
15
+ s.source_files = "ios/*.{h,m,mm,swift}"
16
16
 
17
17
  s.dependency "React-Core"
18
18
  end