chore: upgrade Expo SDK 55 → 57 and React Native 0.83 → 0.86

This commit is contained in:
2026-07-12 16:55:34 -04:00
parent 553fe98013
commit 5cf0293220
57 changed files with 2111 additions and 1569 deletions
+4 -4
View File
@@ -46,13 +46,13 @@ const DAY = 24 * 60 * 60 * 1000;
const RATE_LIMIT_MS = 300;
const globalForJobs = globalThis as unknown as {
_jobs: Map<string, Cron> | undefined;
cronJobs: Map<string, Cron> | undefined;
};
if (!globalForJobs._jobs) {
globalForJobs._jobs = new Map<string, Cron>();
if (!globalForJobs.cronJobs) {
globalForJobs.cronJobs = new Map<string, Cron>();
}
const jobs = globalForJobs._jobs;
const jobs = globalForJobs.cronJobs;
function schedule(name: string, cron: string, handler: () => Promise<void>) {
jobs.set(