@fireproof/core 0.19.121 → 0.19.122
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 +2 -2
- package/index.cjs +2 -4
- package/index.cjs.map +1 -1
- package/index.js +2 -4
- package/index.js.map +1 -1
- package/metafile-cjs.json +1 -1
- package/metafile-esm.json +1 -1
- package/package.json +3 -3
- package/react/index.cjs +91 -26
- package/react/index.cjs.map +1 -1
- package/react/index.d.cts +16 -1
- package/react/index.d.ts +16 -1
- package/react/index.js +92 -27
- package/react/index.js.map +1 -1
- package/react/metafile-cjs.json +1 -1
- package/react/metafile-esm.json +1 -1
package/deno.json
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
{
|
2
2
|
"imports": {
|
3
3
|
"@fireproof/core": "./index.js",
|
4
|
-
"@adviser/cement": "npm:@adviser/cement@^0.3.
|
4
|
+
"@adviser/cement": "npm:@adviser/cement@^0.3.5",
|
5
5
|
"@fireproof/vendor": "npm:@fireproof/vendor@^1.0.4",
|
6
6
|
"@ipld/unixfs": "npm:@ipld/unixfs@^3.0.0",
|
7
7
|
"multiformats": "npm:multiformats@^13.3.1",
|
8
8
|
"charwise": "npm:charwise@^3.0.1",
|
9
9
|
"prolly-trees": "npm:prolly-trees@^1.0.4",
|
10
10
|
"idb": "npm:idb@^8.0.1",
|
11
|
-
"memfs": "npm:memfs@^4.
|
11
|
+
"memfs": "npm:memfs@^4.17.0",
|
12
12
|
"p-limit": "npm:p-limit@^6.2.0",
|
13
13
|
"p-map": "npm:p-map@^7.0.3",
|
14
14
|
"p-retry": "npm:p-retry@^6.2.1"
|
package/index.cjs
CHANGED
@@ -416,9 +416,7 @@ function ensureSuperLog(sthis, componentName, ctx) {
|
|
416
416
|
}
|
417
417
|
function ensureLogger(sthis, componentName, ctx) {
|
418
418
|
let logger;
|
419
|
-
if ((0, import_cement.IsLogger)(sthis)) {
|
420
|
-
logger = sthis;
|
421
|
-
} else if (sthis && (0, import_cement.IsLogger)(sthis.logger)) {
|
419
|
+
if (sthis && (0, import_cement.IsLogger)(sthis.logger)) {
|
422
420
|
logger = sthis.logger;
|
423
421
|
} else {
|
424
422
|
logger = globalLogger();
|
@@ -3817,6 +3815,6 @@ var INDEXDB_VERSION = "v0.19-indexdb";
|
|
3817
3815
|
|
3818
3816
|
// src/version.ts
|
3819
3817
|
var PACKAGE_VERSION = Object.keys({
|
3820
|
-
"0.19.
|
3818
|
+
"0.19.122": "xxxx"
|
3821
3819
|
})[0];
|
3822
3820
|
//# sourceMappingURL=index.cjs.map
|