@rindle/client 0.8.0 → 0.9.0
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/dist/ensure.js +1 -1
- package/package.json +1 -1
- package/src/ensure.ts +1 -1
package/dist/ensure.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// Query readiness for route loaders and intent prefetching. `ResultType` remains the
|
|
2
2
|
// server-authority axis; this module only decides when a caller has enough data to continue.
|
|
3
3
|
import { stableKey } from "./key.js";
|
|
4
|
-
const DEFAULT_RELEASE_DELAY_MS =
|
|
4
|
+
const DEFAULT_RELEASE_DELAY_MS = 10_000;
|
|
5
5
|
const DEFAULT_MAX_ENTRIES = 32;
|
|
6
6
|
/**
|
|
7
7
|
* Deduplicates route/intent preloads and holds their live view through the navigation handoff.
|
package/package.json
CHANGED