expo-dev-launcher 2.1.5 → 2.1.6
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 +6 -0
- package/android/build.gradle +2 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,12 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
+
## 2.1.6 — 2023-03-20
|
|
14
|
+
|
|
15
|
+
### 🐛 Bug fixes
|
|
16
|
+
|
|
17
|
+
- Change arg in gradle `.execute()` call to null to inherit env variables from user's env ([#21712](https://github.com/expo/expo/pull/21712) by [@phoenixiguess](https://github.com/phoenixiguess))
|
|
18
|
+
|
|
13
19
|
## 2.1.5 — 2023-03-03
|
|
14
20
|
|
|
15
21
|
### 💡 Others
|
package/android/build.gradle
CHANGED
|
@@ -40,7 +40,7 @@ android {
|
|
|
40
40
|
minSdkVersion safeExtGet('minSdkVersion', 21)
|
|
41
41
|
targetSdkVersion safeExtGet("targetSdkVersion", 33)
|
|
42
42
|
versionCode 9
|
|
43
|
-
versionName "2.1.
|
|
43
|
+
versionName "2.1.6"
|
|
44
44
|
}
|
|
45
45
|
|
|
46
46
|
lintOptions {
|
|
@@ -180,7 +180,7 @@ def versionToNumber(major, minor, patch) {
|
|
|
180
180
|
}
|
|
181
181
|
|
|
182
182
|
def getNodeModulesPackageVersion(packageName, overridePropName) {
|
|
183
|
-
def nodeModulesVersion = ["node", "-e", "console.log(require('$packageName/package.json').version);"].execute(
|
|
183
|
+
def nodeModulesVersion = ["node", "-e", "console.log(require('$packageName/package.json').version);"].execute(null, projectDir).text.trim()
|
|
184
184
|
def version = safeExtGet(overridePropName, nodeModulesVersion)
|
|
185
185
|
|
|
186
186
|
def coreVersion = version.split("-")[0]
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-dev-launcher",
|
|
3
3
|
"title": "Expo Development Launcher",
|
|
4
|
-
"version": "2.1.
|
|
4
|
+
"version": "2.1.6",
|
|
5
5
|
"description": "Pre-release version of the Expo development launcher package for testing.",
|
|
6
6
|
"main": "build/DevLauncher.js",
|
|
7
7
|
"types": "build/DevLauncher.d.ts",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"license": "MIT",
|
|
30
30
|
"homepage": "https://docs.expo.dev",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"expo-dev-menu": "2.1.
|
|
32
|
+
"expo-dev-menu": "2.1.4",
|
|
33
33
|
"resolve-from": "^5.0.0",
|
|
34
34
|
"semver": "^7.3.5"
|
|
35
35
|
},
|
|
@@ -63,5 +63,5 @@
|
|
|
63
63
|
"./setupTests.ts"
|
|
64
64
|
]
|
|
65
65
|
},
|
|
66
|
-
"gitHead": "
|
|
66
|
+
"gitHead": "e2e97e486ee900db8912f2d6e6526d1966fb2c6c"
|
|
67
67
|
}
|