expo-template-bare-minimum 54.0.27 → 54.0.28

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 +9 -1
  2. package/package.json +2 -2
package/ios/Podfile CHANGED
@@ -4,6 +4,14 @@ 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
+ def ccache_enabled?(podfile_properties)
8
+ # Environment variable takes precedence
9
+ return ENV['USE_CCACHE'] == '1' if ENV['USE_CCACHE']
10
+
11
+ # Fall back to Podfile properties
12
+ podfile_properties['apple.ccacheEnabled'] == 'true'
13
+ end
14
+
7
15
  ENV['RCT_NEW_ARCH_ENABLED'] ||= '0' if podfile_properties['newArchEnabled'] == 'false'
8
16
  ENV['EX_DEV_CLIENT_NETWORK_INSPECTOR'] ||= podfile_properties['EX_DEV_CLIENT_NETWORK_INSPECTOR']
9
17
  ENV['RCT_USE_RN_DEP'] ||= '1' if podfile_properties['ios.buildReactNativeFromSource'] != 'true' && podfile_properties['newArchEnabled'] != 'false'
@@ -46,7 +54,7 @@ target 'HelloWorld' do
46
54
  installer,
47
55
  config[:reactNativePath],
48
56
  :mac_catalyst_enabled => false,
49
- :ccache_enabled => podfile_properties['apple.ccacheEnabled'] == 'true',
57
+ :ccache_enabled => ccache_enabled?(podfile_properties),
50
58
  )
51
59
  end
52
60
  end
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": "54.0.27",
5
+ "version": "54.0.28",
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": "~54.0.10",
14
+ "expo": "~54.0.11",
15
15
  "expo-status-bar": "~3.0.8",
16
16
  "react": "19.1.0",
17
17
  "react-native": "0.81.4"