expo-updates 55.0.13 → 55.0.14
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.
package/CHANGELOG.md
CHANGED
package/android/build.gradle
CHANGED
|
@@ -42,7 +42,7 @@ expoModule {
|
|
|
42
42
|
}
|
|
43
43
|
|
|
44
44
|
group = 'host.exp.exponent'
|
|
45
|
-
version = '55.0.
|
|
45
|
+
version = '55.0.14'
|
|
46
46
|
|
|
47
47
|
// Utility method to derive boolean values from the environment or from Java properties,
|
|
48
48
|
// and return them as strings to be used in BuildConfig fields
|
|
@@ -89,7 +89,7 @@ android {
|
|
|
89
89
|
namespace "expo.modules.updates"
|
|
90
90
|
defaultConfig {
|
|
91
91
|
versionCode 31
|
|
92
|
-
versionName '55.0.
|
|
92
|
+
versionName '55.0.14'
|
|
93
93
|
consumerProguardFiles("proguard-rules.pro")
|
|
94
94
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
95
95
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-updates",
|
|
3
|
-
"version": "55.0.
|
|
3
|
+
"version": "55.0.14",
|
|
4
4
|
"description": "Fetches and manages remotely-hosted assets and updates to your app's JS bundle.",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"chalk": "^4.1.2",
|
|
46
46
|
"debug": "^4.3.4",
|
|
47
47
|
"expo-eas-client": "~55.0.2",
|
|
48
|
-
"expo-manifests": "~55.0.
|
|
48
|
+
"expo-manifests": "~55.0.10",
|
|
49
49
|
"expo-structured-headers": "~55.0.0",
|
|
50
50
|
"expo-updates-interface": "~55.1.3",
|
|
51
51
|
"getenv": "^2.0.0",
|
|
@@ -71,5 +71,5 @@
|
|
|
71
71
|
"react": "*",
|
|
72
72
|
"react-native": "*"
|
|
73
73
|
},
|
|
74
|
-
"gitHead": "
|
|
74
|
+
"gitHead": "9260ae10a08271027d85792b7128e0d4883dca4d"
|
|
75
75
|
}
|
|
@@ -26,7 +26,7 @@ RCT_METRO_PORT=${RCT_METRO_PORT:=8081}
|
|
|
26
26
|
# `$PROJECT_DIR` is passed by Xcode as the directory to the xcodeproj file.
|
|
27
27
|
# in classic main project setup it is something like /path/to/app/ios
|
|
28
28
|
# in new style pod project setup it is something like /path/to/app/ios/Pods
|
|
29
|
-
PROJECT_DIR_BASENAME=$(basename $PROJECT_DIR)
|
|
29
|
+
PROJECT_DIR_BASENAME=$(basename "$PROJECT_DIR")
|
|
30
30
|
if [ "x$PROJECT_DIR_BASENAME" != "xPods" ]; then
|
|
31
31
|
exit 0
|
|
32
32
|
fi
|
|
@@ -41,6 +41,7 @@ PROJECT_ROOT="$(pwd -P)"
|
|
|
41
41
|
|
|
42
42
|
if [ "$BUNDLE_FORMAT" == "shallow" ]; then
|
|
43
43
|
RESOURCE_DEST="$DEST/$RESOURCE_BUNDLE_NAME"
|
|
44
|
+
mkdir -p "$RESOURCE_DEST"
|
|
44
45
|
elif [ "$BUNDLE_FORMAT" == "deep" ]; then
|
|
45
46
|
RESOURCE_DEST="$DEST/$RESOURCE_BUNDLE_NAME/Contents/Resources"
|
|
46
47
|
mkdir -p "$RESOURCE_DEST"
|