@bravemobile/react-native-code-push 12.0.0-beta.5 → 12.0.0-beta.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bravemobile/react-native-code-push",
|
|
3
|
-
"version": "12.0.0-beta.
|
|
3
|
+
"version": "12.0.0-beta.6",
|
|
4
4
|
"description": "React Native plugin for the CodePush service",
|
|
5
5
|
"main": "CodePush.js",
|
|
6
6
|
"typings": "typings/react-native-code-push.d.ts",
|
|
@@ -49,6 +49,7 @@
|
|
|
49
49
|
"hoist-non-react-statics": "^3.3.2",
|
|
50
50
|
"semver": "^7.3.5",
|
|
51
51
|
"shelljs": "^0.8.5",
|
|
52
|
+
"xcode": "^3.0.1",
|
|
52
53
|
"yazl": "^3.3.1"
|
|
53
54
|
},
|
|
54
55
|
"peerDependencies": {
|
|
@@ -89,8 +90,7 @@
|
|
|
89
90
|
"ts-node": "^10.9.2",
|
|
90
91
|
"tslint": "^6.1.3",
|
|
91
92
|
"typescript": "5.0.4",
|
|
92
|
-
"typescript-eslint": "^8.11.0"
|
|
93
|
-
"xcode": "^3.0.1"
|
|
93
|
+
"typescript-eslint": "^8.11.0"
|
|
94
94
|
},
|
|
95
95
|
"engines": {
|
|
96
96
|
"node": ">=18"
|
|
@@ -48,6 +48,10 @@ export interface UpdateCheckResponse {
|
|
|
48
48
|
}
|
|
49
49
|
|
|
50
50
|
export interface CodePushOptions extends SyncOptions {
|
|
51
|
+
/**
|
|
52
|
+
* The `ignoreFailedUpdates` option is only available as an option for `CodePush.sync()`.
|
|
53
|
+
*/
|
|
54
|
+
ignoreFailedUpdates?: never;
|
|
51
55
|
/**
|
|
52
56
|
* Specifies when you would like to synchronize updates with the CodePush server.
|
|
53
57
|
* Defaults to codePush.CheckFrequency.ON_APP_START.
|