expo 47.0.5 → 47.0.7

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.
@@ -34,7 +34,7 @@ def getRNVersion() {
34
34
  ensureDependeciesWereEvaluated(project)
35
35
 
36
36
  group = 'host.exp.exponent'
37
- version = '47.0.5'
37
+ version = '47.0.7'
38
38
 
39
39
  buildscript {
40
40
  def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
@@ -105,7 +105,7 @@ android {
105
105
  minSdkVersion safeExtGet("minSdkVersion", 21)
106
106
  targetSdkVersion safeExtGet("targetSdkVersion", 31)
107
107
  versionCode 1
108
- versionName "47.0.5"
108
+ versionName "47.0.7"
109
109
  consumerProguardFiles("proguard-rules.pro")
110
110
  }
111
111
  lintOptions {
@@ -32,7 +32,7 @@
32
32
  "expo-constants": "~14.0.2",
33
33
  "expo-contacts": "~11.0.1",
34
34
  "expo-crypto": "~12.0.0",
35
- "expo-dev-client": "~2.0.0",
35
+ "expo-dev-client": "~2.0.1",
36
36
  "expo-device": "~5.0.0",
37
37
  "expo-document-picker": "~11.0.1",
38
38
  "expo-error-recovery": "~4.0.1",
@@ -47,7 +47,7 @@
47
47
  "expo-haptics": "~12.0.1",
48
48
  "expo-image-loader": "~4.0.0",
49
49
  "expo-image-manipulator": "~11.0.0",
50
- "expo-image-picker": "~14.0.1",
50
+ "expo-image-picker": "~14.0.2",
51
51
  "expo-in-app-purchases": "~14.0.0",
52
52
  "expo-intent-launcher": "~10.3.1",
53
53
  "expo-keep-awake": "~11.0.1",
@@ -80,7 +80,7 @@
80
80
  "expo-system-ui": "~2.0.1",
81
81
  "expo-task-manager": "~11.0.1",
82
82
  "expo-tracking-transparency": "~3.0.1",
83
- "expo-updates": "~0.15.5",
83
+ "expo-updates": "~0.15.6",
84
84
  "expo-video-thumbnails": "~7.0.0",
85
85
  "expo-web-browser": "~12.0.0",
86
86
  "lottie-react-native": "5.1.4",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo",
3
- "version": "47.0.5",
3
+ "version": "47.0.7",
4
4
  "description": "The Expo SDK",
5
5
  "main": "build/Expo.js",
6
6
  "module": "build/Expo.js",
@@ -59,7 +59,7 @@
59
59
  "homepage": "https://github.com/expo/expo/tree/main/packages/expo",
60
60
  "dependencies": {
61
61
  "@babel/runtime": "^7.14.0",
62
- "@expo/cli": "0.4.9",
62
+ "@expo/cli": "0.4.10",
63
63
  "@expo/vector-icons": "^13.0.0",
64
64
  "@expo/config-plugins": "5.0.4",
65
65
  "@expo/config": "7.0.3",
@@ -91,10 +91,10 @@
91
91
  "@types/react-native": "~0.69.1",
92
92
  "@types/react-test-renderer": "^18.0.0",
93
93
  "@types/uuid": "^3.4.7",
94
- "expo-module-scripts": "^3.0.3",
94
+ "expo-module-scripts": "^3.0.4",
95
95
  "react": "18.1.0",
96
96
  "react-dom": "18.0.0",
97
97
  "react-native": "0.70.5"
98
98
  },
99
- "gitHead": "78b400edf9253bd3981e6e1f46ae11e36bd79ec2"
99
+ "gitHead": "944518937c366466608634c7ccd6177d2b4688b2"
100
100
  }
@@ -15,6 +15,7 @@
15
15
  // Currently only supports android and ios.
16
16
 
17
17
  const { resolveEntryPoint } = require('@expo/config/paths');
18
+ const fs = require('fs');
18
19
  const path = require('path');
19
20
 
20
21
  const projectRoot = process.argv[1];
@@ -34,7 +35,9 @@ if (entry) {
34
35
  // Prevent any logs from the app.config.js
35
36
  // from being used in the output of this command.
36
37
  console.clear();
37
- console.log(absolute ? path.resolve(entry) : path.relative(projectRoot, entry));
38
+ // React Native's `PROJECT_ROOT` could be using a different root on MacOS (`/var` vs `/private/var`)
39
+ // We need to make sure to get the real path, `resolveEntryPoint` is using this too
40
+ console.log(absolute ? path.resolve(entry) : path.relative(fs.realpathSync(projectRoot), entry));
38
41
  } else {
39
42
  console.error(`Error: Could not find entry file for project at: ${projectRoot}`);
40
43
  process.exit(1);