expo-dev-menu 4.2.0 → 4.2.1
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/.eslintignore +1 -0
- package/CHANGELOG.md +13 -0
- package/android/build.gradle +2 -2
- package/app/App.tsx +0 -1
- package/app/components/LoadInitialData.tsx +1 -1
- package/app/components/Main.tsx +20 -19
- package/app/hooks/useClipboard.tsx +1 -1
- package/app/hooks/useDevSettings.tsx +1 -1
- package/assets/EXDevMenuApp.android.js +64 -66
- package/assets/EXDevMenuApp.ios.js +64 -66
- package/package.json +4 -3
- package/tsconfig.app.json +5 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-dev-menu",
|
|
3
|
-
"version": "4.2.
|
|
3
|
+
"version": "4.2.1",
|
|
4
4
|
"description": "Expo/React Native module with the developer menu.",
|
|
5
5
|
"main": "build/DevMenu.js",
|
|
6
6
|
"types": "build/DevMenu.d.ts",
|
|
@@ -8,7 +8,8 @@
|
|
|
8
8
|
"scripts": {
|
|
9
9
|
"build": "expo-module build",
|
|
10
10
|
"clean": "expo-module clean",
|
|
11
|
-
"lint": "expo-module lint",
|
|
11
|
+
"lint": "expo-module lint ./app/*",
|
|
12
|
+
"ts:check": "expo-module tsc --project tsconfig.app.json --noEmit & expo-module tsc --noEmit",
|
|
12
13
|
"test": "expo-module test",
|
|
13
14
|
"prepare": "expo-module prepare && ./scripts/reset-dev-menu-packager-host.sh",
|
|
14
15
|
"prepublishOnly": "expo-module prepublishOnly",
|
|
@@ -71,5 +72,5 @@
|
|
|
71
72
|
"peerDependencies": {
|
|
72
73
|
"expo": "*"
|
|
73
74
|
},
|
|
74
|
-
"gitHead": "
|
|
75
|
+
"gitHead": "62f76105dfb436f7144440d6e6077d4ff3263842"
|
|
75
76
|
}
|