expo-template-bare-minimum 52.0.1 → 52.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.
Files changed (2) hide show
  1. package/ios/Podfile +3 -2
  2. package/package.json +3 -3
package/ios/Podfile CHANGED
@@ -17,7 +17,7 @@ target 'HelloWorld' do
17
17
  use_expo_modules!
18
18
 
19
19
  if ENV['EXPO_USE_COMMUNITY_AUTOLINKING'] == '1'
20
- config = use_native_modules!
20
+ config_command = ['node', '-e', "process.argv=['', '', 'config'];require('@react-native-community/cli').run()"];
21
21
  else
22
22
  config_command = [
23
23
  'node',
@@ -29,9 +29,10 @@ target 'HelloWorld' do
29
29
  '--platform',
30
30
  'ios'
31
31
  ]
32
- config = use_native_modules!(config_command)
33
32
  end
34
33
 
34
+ config = use_native_modules!(config_command)
35
+
35
36
  use_frameworks! :linkage => podfile_properties['ios.useFrameworks'].to_sym if podfile_properties['ios.useFrameworks']
36
37
  use_frameworks! :linkage => ENV['USE_FRAMEWORKS'].to_sym if ENV['USE_FRAMEWORKS']
37
38
 
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "expo-template-bare-minimum",
3
3
  "description": "This bare project template includes a minimal setup for using unimodules with React Native.",
4
4
  "license": "0BSD",
5
- "version": "52.0.1",
5
+ "version": "52.0.2",
6
6
  "main": "index.js",
7
7
  "scripts": {
8
8
  "start": "expo start --dev-client",
@@ -11,10 +11,10 @@
11
11
  "web": "expo start --web"
12
12
  },
13
13
  "dependencies": {
14
- "expo": "~52.0.0-preview.1",
14
+ "expo": "~52.0.0-preview.2",
15
15
  "expo-status-bar": "~2.0.0",
16
16
  "react": "18.3.1",
17
- "react-native": "0.76.0-rc.6"
17
+ "react-native": "0.76.0"
18
18
  },
19
19
  "devDependencies": {
20
20
  "@babel/core": "^7.20.0"