taladb 0.2.5 → 0.2.8

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/index.js CHANGED
@@ -68,7 +68,7 @@ var WorkerProxy = class {
68
68
  }
69
69
  };
70
70
  async function createInMemoryBrowserDB(_dbName) {
71
- const wasmUrl = new URL("@taladb/web/pkg/taladb_wasm.js", import_meta.url);
71
+ const wasmUrl = new URL("@taladb/web/pkg/taladb_web.js", import_meta.url);
72
72
  const wasm = await import(
73
73
  /* @vite-ignore */
74
74
  wasmUrl.href
package/dist/index.mjs CHANGED
@@ -33,7 +33,7 @@ var WorkerProxy = class {
33
33
  }
34
34
  };
35
35
  async function createInMemoryBrowserDB(_dbName) {
36
- const wasmUrl = new URL("@taladb/web/pkg/taladb_wasm.js", import.meta.url);
36
+ const wasmUrl = new URL("@taladb/web/pkg/taladb_web.js", import.meta.url);
37
37
  const wasm = await import(
38
38
  /* @vite-ignore */
39
39
  wasmUrl.href
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taladb",
3
- "version": "0.2.5",
3
+ "version": "0.2.8",
4
4
  "description": "Local-first document and vector database for React, React Native, and Node.js",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",