1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee
This commit is contained in:
sunnylqm 2024-04-18 22:50:20 +08:00
parent 571c2819b9
commit d1ecfb3f93
No known key found for this signature in database
3 changed files with 9 additions and 1 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "react-native-update", "name": "react-native-update",
"version": "10.4.0", "version": "10.4.1",
"description": "react-native hot update", "description": "react-native hot update",
"main": "src/index.ts", "main": "src/index.ts",
"scripts": { "scripts": {

View File

@ -35,6 +35,7 @@ export class Pushy {
useAlert: true, useAlert: true,
strategy: 'both', strategy: 'both',
logger: noop, logger: noop,
debug: false,
}; };
lastChecking?: number; lastChecking?: number;
@ -146,6 +147,12 @@ export class Pushy {
} }
}; };
checkUpdate = async () => { checkUpdate = async () => {
if (__DEV__ && !this.options.debug) {
console.info(
'您当前处于开发环境且未启用debug不会进行热更检查。如需在开发环境中调试热更请在client中设置debug为true',
);
return;
}
const now = Date.now(); const now = Date.now();
if ( if (
this.lastRespJson && this.lastRespJson &&

View File

@ -73,4 +73,5 @@ export interface PushyOptions {
strategy?: 'onAppStart' | 'onAppResume' | 'both' | null; strategy?: 'onAppStart' | 'onAppResume' | 'both' | null;
autoMarkSuccess?: boolean; autoMarkSuccess?: boolean;
dismissErrorAfter?: number; dismissErrorAfter?: number;
debug?: boolean;
} }