expo-modules-autolinking 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/CHANGELOG.md CHANGED
@@ -10,6 +10,12 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 1.0.2 — 2023-01-10
14
+
15
+ ### 🐛 Bug fixes
16
+
17
+ - Replace deprecated `File.exists?` with `File.exist?` to fix usage with `ruby@3.2`. ([#20470](https://github.com/expo/expo/pull/20757) by [@KiwiKilian](https://github.com/kiwikilian))
18
+
13
19
  ## 1.0.1 — 2022-12-30
14
20
 
15
21
  ### 🐛 Bug fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-modules-autolinking",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Scripts that autolink Expo modules.",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -48,5 +48,5 @@
48
48
  "find-up": "^5.0.0",
49
49
  "fs-extra": "^9.1.0"
50
50
  },
51
- "gitHead": "ba80e8181b79d06e00a245653727f4eaeb80420e"
51
+ "gitHead": "9047ecfbe233924e4848722b518d8ce1fa8b7173"
52
52
  }
@@ -5,7 +5,7 @@ require 'pathname'
5
5
  def maybe_generate_xcode_env_file!()
6
6
  project_directory = Pod::Config.instance.project_root
7
7
  xcode_env_file = File.join(project_directory, '.xcode.env.local')
8
- if File.exists?(xcode_env_file)
8
+ if File.exist?(xcode_env_file)
9
9
  return
10
10
  end
11
11