expo-template-bare-minimum 53.0.0 → 53.0.3

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.
@@ -0,0 +1 @@
1
+ {"root":"/Users/brent/code/expo/templates/expo-template-bare-minimum","reactNativePath":"/Users/brent/code/expo/templates/expo-template-bare-minimum/node_modules/react-native","dependencies":{"expo":{"root":"/Users/brent/code/expo/templates/expo-template-bare-minimum/node_modules/expo","name":"expo","platforms":{"android":{"sourceDir":"/Users/brent/code/expo/templates/expo-template-bare-minimum/node_modules/expo/android","packageImportPath":"import expo.modules.ExpoModulesPackage;","packageInstance":"new ExpoModulesPackage()","buildTypes":[],"componentDescriptors":[],"cmakeListsPath":"/Users/brent/code/expo/templates/expo-template-bare-minimum/node_modules/expo/android/build/generated/source/codegen/jni/CMakeLists.txt","cxxModuleCMakeListsModuleName":null,"cxxModuleCMakeListsPath":null,"cxxModuleHeaderName":null}}}},"project":{"android":{"packageName":"com.helloworld","sourceDir":"/Users/brent/code/expo/templates/expo-template-bare-minimum/android"}}}
@@ -0,0 +1 @@
1
+ 5d028ea98616dae8eb2e417ae1be211a9ad9fee0283679997344372e7a520dec
@@ -0,0 +1 @@
1
+ 1c865220c1bb3c5ac981d9297b91547b33da4402ca777f096d3edb89ea4bbacb
@@ -35,7 +35,7 @@ reactNativeArchitectures=armeabi-v7a,arm64-v8a,x86,x86_64
35
35
  # your application. You should enable this flag either if you want
36
36
  # to write custom TurboModules/Fabric components OR use libraries that
37
37
  # are providing them.
38
- newArchEnabled=false
38
+ newArchEnabled=true
39
39
 
40
40
  # Use this property to enable or disable the Hermes JS engine.
41
41
  # If set to false, you will be using JSC instead.
package/ios/Podfile CHANGED
@@ -4,7 +4,7 @@ require File.join(File.dirname(`node --print "require.resolve('react-native/pack
4
4
  require 'json'
5
5
  podfile_properties = JSON.parse(File.read(File.join(__dir__, 'Podfile.properties.json'))) rescue {}
6
6
 
7
- ENV['RCT_NEW_ARCH_ENABLED'] = podfile_properties['newArchEnabled'] == 'true' ? '1' : '0'
7
+ ENV['RCT_NEW_ARCH_ENABLED'] = '0' if podfile_properties['newArchEnabled'] == 'false'
8
8
  ENV['EX_DEV_CLIENT_NETWORK_INSPECTOR'] = podfile_properties['EX_DEV_CLIENT_NETWORK_INSPECTOR']
9
9
 
10
10
  platform :ios, podfile_properties['ios.deploymentTarget'] || '15.1'
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": "53.0.0",
5
+ "version": "53.0.3",
6
6
  "main": "index.js",
7
7
  "scripts": {
8
8
  "start": "expo start --dev-client",
@@ -11,7 +11,7 @@
11
11
  "web": "expo start --web"
12
12
  },
13
13
  "dependencies": {
14
- "expo": "~53.0.0-preview.0",
14
+ "expo": "~53.0.0-preview.1",
15
15
  "expo-status-bar": "~2.1.0",
16
16
  "react": "19.0.0",
17
17
  "react-native": "0.79.0-rc.4"