@fireproof/core 0.19.114 → 0.19.115
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/deno.json +1 -1
- package/index.cjs +3 -3
- package/index.cjs.map +1 -1
- package/index.global.js +2 -2
- package/index.global.js.map +1 -1
- package/index.js +3 -3
- package/index.js.map +1 -1
- package/metafile-cjs.json +1 -1
- package/metafile-esm.json +1 -1
- package/metafile-iife.json +1 -1
- package/package.json +2 -2
package/index.js
CHANGED
|
@@ -2304,8 +2304,8 @@ var ConnectionBase = class {
|
|
|
2304
2304
|
});
|
|
2305
2305
|
this.loader.remoteMetaStore = remote;
|
|
2306
2306
|
this.loaded = this.loader.ready().then(async () => {
|
|
2307
|
-
remote.load().then(async () => {
|
|
2308
|
-
(await throwFalsy(this.loader).WALStore()).process();
|
|
2307
|
+
return remote.load().then(async () => {
|
|
2308
|
+
return (await throwFalsy(this.loader).WALStore()).process();
|
|
2309
2309
|
});
|
|
2310
2310
|
});
|
|
2311
2311
|
}
|
|
@@ -3453,7 +3453,7 @@ var INDEXDB_VERSION = "v0.19-indexdb";
|
|
|
3453
3453
|
|
|
3454
3454
|
// src/version.ts
|
|
3455
3455
|
var PACKAGE_VERSION = Object.keys({
|
|
3456
|
-
"0.19.
|
|
3456
|
+
"0.19.115": "xxxx"
|
|
3457
3457
|
})[0];
|
|
3458
3458
|
export {
|
|
3459
3459
|
CRDT,
|