expo-updates 0.18.14 → 0.18.15
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
|
@@ -10,6 +10,12 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
+
## 0.18.15 — 2023-10-05
|
|
14
|
+
|
|
15
|
+
### 🐛 Bug fixes
|
|
16
|
+
|
|
17
|
+
- [Android] completely fix `node` execution on Windows ([#24116](https://github.com/expo/expo/pull/24116) by [@weykon](https://github.com/weykon))
|
|
18
|
+
|
|
13
19
|
## 0.18.14 — 2023-09-27
|
|
14
20
|
|
|
15
21
|
_This version does not introduce any user-facing changes._
|
package/android/build.gradle
CHANGED
|
@@ -4,7 +4,7 @@ apply plugin: 'kotlin-kapt'
|
|
|
4
4
|
apply plugin: 'maven-publish'
|
|
5
5
|
|
|
6
6
|
group = 'host.exp.exponent'
|
|
7
|
-
version = '0.18.
|
|
7
|
+
version = '0.18.15'
|
|
8
8
|
|
|
9
9
|
// Utility method to derive boolean values from the environment or from Java properties,
|
|
10
10
|
// and return them as strings to be used in BuildConfig fields
|
|
@@ -95,7 +95,7 @@ android {
|
|
|
95
95
|
minSdkVersion safeExtGet("minSdkVersion", 21)
|
|
96
96
|
targetSdkVersion safeExtGet("targetSdkVersion", 33)
|
|
97
97
|
versionCode 31
|
|
98
|
-
versionName '0.18.
|
|
98
|
+
versionName '0.18.15'
|
|
99
99
|
consumerProguardFiles("proguard-rules.pro")
|
|
100
100
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
101
101
|
|
package/expo-updates-gradle-plugin/src/main/kotlin/expo/modules/updates/ExpoUpdatesPlugin.kt
CHANGED
|
@@ -75,7 +75,7 @@ abstract class ExpoUpdatesPlugin : Plugin<Project> {
|
|
|
75
75
|
}
|
|
76
76
|
|
|
77
77
|
if (Os.isFamily(Os.FAMILY_WINDOWS)) {
|
|
78
|
-
it.commandLine("cmd", "/c", args)
|
|
78
|
+
it.commandLine("cmd", "/c", *args.toTypedArray())
|
|
79
79
|
} else {
|
|
80
80
|
it.commandLine(args)
|
|
81
81
|
}
|
|
@@ -89,7 +89,7 @@ abstract class ExpoUpdatesPlugin : Plugin<Project> {
|
|
|
89
89
|
project.exec {
|
|
90
90
|
val args = listOf(*nodeExecutableAndArgs.get().toTypedArray(), "-e", "console.log(require('path').dirname(require.resolve('expo-updates/package.json')));")
|
|
91
91
|
if (Os.isFamily(Os.FAMILY_WINDOWS)) {
|
|
92
|
-
it.commandLine("cmd", "/c", args)
|
|
92
|
+
it.commandLine("cmd", "/c", *args.toTypedArray())
|
|
93
93
|
} else {
|
|
94
94
|
it.commandLine(args)
|
|
95
95
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-updates",
|
|
3
|
-
"version": "0.18.
|
|
3
|
+
"version": "0.18.15",
|
|
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",
|
|
@@ -64,5 +64,5 @@
|
|
|
64
64
|
"peerDependencies": {
|
|
65
65
|
"expo": "*"
|
|
66
66
|
},
|
|
67
|
-
"gitHead": "
|
|
67
|
+
"gitHead": "d2b91e83b2845467865b2ec3b975edba0a5d6995"
|
|
68
68
|
}
|