expo-dev-menu 2.1.2 → 2.1.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.
package/CHANGELOG.md CHANGED
@@ -10,6 +10,18 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 2.1.4 — 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
+
19
+ ## 2.1.3 — 2023-02-25
20
+
21
+ ### 🐛 Bug fixes
22
+
23
+ - Fixed `'jsc/JSCRuntime.h' file not found` when using JSC on iOS. ([#21246](https://github.com/expo/expo/pull/21246) by [@lukmccall](https://github.com/lukmccall))
24
+
13
25
  ## 2.1.2 — 2023-02-17
14
26
 
15
27
  ### 🐛 Bug fixes
@@ -7,7 +7,7 @@ apply plugin: 'kotlin-android'
7
7
  apply plugin: 'maven-publish'
8
8
 
9
9
  group = 'host.exp.exponent'
10
- version = '2.1.2'
10
+ version = '2.1.4'
11
11
 
12
12
  // reanimated v2
13
13
  def reactNativeFilePath = ["node", "--print", "require.resolve('react-native/package.json')"].execute(null, rootDir).text.trim()
@@ -132,7 +132,7 @@ android {
132
132
  minSdkVersion safeExtGet("minSdkVersion", 21)
133
133
  targetSdkVersion safeExtGet("targetSdkVersion", 33)
134
134
  versionCode 10
135
- versionName '2.1.2'
135
+ versionName '2.1.4'
136
136
  }
137
137
  lintOptions {
138
138
  abortOnError false
@@ -234,7 +234,7 @@ def versionToNumber(major, minor, patch) {
234
234
  }
235
235
 
236
236
  def getNodeModulesPackageVersion(packageName, overridePropName) {
237
- def nodeModulesVersion = ["node", "-e", "console.log(require('$packageName/package.json').version);"].execute([], projectDir).text.trim()
237
+ def nodeModulesVersion = ["node", "-e", "console.log(require('$packageName/package.json').version);"].execute(null, projectDir).text.trim()
238
238
  def version = safeExtGet(overridePropName, nodeModulesVersion)
239
239
 
240
240
  def coreVersion = version.split("-")[0]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-dev-menu",
3
- "version": "2.1.2",
3
+ "version": "2.1.4",
4
4
  "description": "Expo/React Native module with the developer menu.",
5
5
  "main": "build/DevMenu.js",
6
6
  "types": "build/DevMenu.d.ts",
@@ -71,5 +71,5 @@
71
71
  "peerDependencies": {
72
72
  "expo": "*"
73
73
  },
74
- "gitHead": "7a4aa113fdc7a69d0f19e14af2af4d5f5edfdb0b"
74
+ "gitHead": "e2e97e486ee900db8912f2d6e6526d1966fb2c6c"
75
75
  }