expo 49.0.0-beta.3 → 49.0.0-beta.4

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.
@@ -33,7 +33,7 @@ def getRNVersion() {
33
33
  ensureDependeciesWereEvaluated(project)
34
34
 
35
35
  group = 'host.exp.exponent'
36
- version = '49.0.0-beta.3'
36
+ version = '49.0.0-beta.4'
37
37
 
38
38
  buildscript {
39
39
  def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
@@ -97,7 +97,7 @@ android {
97
97
  minSdkVersion safeExtGet("minSdkVersion", 21)
98
98
  targetSdkVersion safeExtGet("targetSdkVersion", 33)
99
99
  versionCode 1
100
- versionName "49.0.0-beta.3"
100
+ versionName "49.0.0-beta.4"
101
101
  consumerProguardFiles("proguard-rules.pro")
102
102
  }
103
103
  lintOptions {
package/bin/cli CHANGED
@@ -1,4 +1,5 @@
1
- #!/usr/bin/env bash
1
+ #!/usr/bin/env node
2
2
 
3
- # Forward all arguments to the local CLI (@expo/cli).
4
- npm exec --no-install -- expo-internal "$@"
3
+ // Execute the CLI using node module resolution, instead of creating a new process.
4
+ // This avoids resolving issues with pnpm and yarn 2+ package managers.
5
+ require('@expo/cli');
@@ -31,7 +31,7 @@
31
31
  "expo-constants": "~14.4.2",
32
32
  "expo-contacts": "~12.2.0",
33
33
  "expo-crypto": "~12.4.0",
34
- "expo-dev-client": "~2.4.2",
34
+ "expo-dev-client": "~2.4.3",
35
35
  "expo-device": "~5.4.0",
36
36
  "expo-document-picker": "~11.5.2",
37
37
  "expo-face-detector": "~12.2.0",
@@ -71,7 +71,7 @@
71
71
  "expo-sharing": "~11.5.0",
72
72
  "expo-sms": "~11.4.0",
73
73
  "expo-speech": "~11.3.0",
74
- "expo-splash-screen": "~0.20.2",
74
+ "expo-splash-screen": "~0.20.3",
75
75
  "expo-sqlite": "~11.3.1",
76
76
  "expo-status-bar": "~1.6.0",
77
77
  "expo-store-review": "~6.4.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo",
3
- "version": "49.0.0-beta.3",
3
+ "version": "49.0.0-beta.4",
4
4
  "description": "The Expo SDK",
5
5
  "main": "build/Expo.js",
6
6
  "module": "build/Expo.js",
@@ -89,5 +89,5 @@
89
89
  "react-dom": "18.2.0",
90
90
  "react-native": "0.72.0"
91
91
  },
92
- "gitHead": "554e8b88a1a5d7f54c67cdb66e928a0adfb8731d"
92
+ "gitHead": "6c5f5daa406fe2feda0f4b90690c2b4f24ceba8d"
93
93
  }