react-native-update 9.1.0 → 9.1.2
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/lib/index.web.js +1 -1
- package/package.json +4 -1
package/lib/index.web.js
CHANGED
|
@@ -14,5 +14,5 @@ export const markSuccess = noop;
|
|
|
14
14
|
export const downloadAndInstallApk = noop;
|
|
15
15
|
export const setCustomEndpoints = noop;
|
|
16
16
|
export const getCurrentVersionInfo = noop;
|
|
17
|
-
export const simpleUpdate =
|
|
17
|
+
export const simpleUpdate = (app) => app;
|
|
18
18
|
export const onEvents = noop;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-update",
|
|
3
|
-
"version": "9.1.
|
|
3
|
+
"version": "9.1.2",
|
|
4
4
|
"description": "react-native hot update",
|
|
5
5
|
"main": "lib/index.ts",
|
|
6
6
|
"scripts": {
|
|
@@ -57,11 +57,14 @@
|
|
|
57
57
|
"devDependencies": {
|
|
58
58
|
"@types/fs-extra": "^9.0.13",
|
|
59
59
|
"@types/jest": "^29.2.1",
|
|
60
|
+
"@types/node": "^20.8.9",
|
|
61
|
+
"@types/react": "^18.2.33",
|
|
60
62
|
"detox": "^20.5.0",
|
|
61
63
|
"firebase-tools": "^11.24.1",
|
|
62
64
|
"fs-extra": "^9.1.0",
|
|
63
65
|
"jest": "^29.2.1",
|
|
64
66
|
"pod-install": "^0.1.37",
|
|
67
|
+
"react-native": "^0.72.6",
|
|
65
68
|
"ts-jest": "^29.0.3",
|
|
66
69
|
"typescript": "^5.2.2"
|
|
67
70
|
}
|