orez 0.5.16 → 0.5.17
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/README.md +4 -0
- package/dist/sync-browser-host/generated/sqlite3-browser.wasm +0 -0
- package/dist/sync-browser-host/generated/sync_wasm.js +824 -0
- package/dist/sync-browser-host/generated/sync_wasm_bg.wasm +0 -0
- package/dist/sync-browser-host/host.d.ts +8 -0
- package/dist/sync-browser-host/host.d.ts.map +1 -0
- package/dist/sync-browser-host/host.js +435 -0
- package/dist/sync-browser-host/host.js.map +1 -0
- package/dist/sync-browser-host/idb-snapshot.d.ts +10 -0
- package/dist/sync-browser-host/idb-snapshot.d.ts.map +1 -0
- package/dist/sync-browser-host/idb-snapshot.js +109 -0
- package/dist/sync-browser-host/idb-snapshot.js.map +1 -0
- package/dist/sync-browser-host/index.d.ts +4 -0
- package/dist/sync-browser-host/index.d.ts.map +1 -0
- package/dist/sync-browser-host/index.js +4 -0
- package/dist/sync-browser-host/index.js.map +1 -0
- package/dist/sync-browser-host/message-port.d.ts +6 -0
- package/dist/sync-browser-host/message-port.d.ts.map +1 -0
- package/dist/sync-browser-host/message-port.js +182 -0
- package/dist/sync-browser-host/message-port.js.map +1 -0
- package/dist/sync-browser-host/sqlite-adapter.d.ts +66 -0
- package/dist/sync-browser-host/sqlite-adapter.d.ts.map +1 -0
- package/dist/sync-browser-host/sqlite-adapter.js +135 -0
- package/dist/sync-browser-host/sqlite-adapter.js.map +1 -0
- package/dist/sync-browser-host/types.d.ts +88 -0
- package/dist/sync-browser-host/types.d.ts.map +1 -0
- package/dist/sync-browser-host/types.js +12 -0
- package/dist/sync-browser-host/types.js.map +1 -0
- package/dist/test-setup.d.ts +2 -0
- package/dist/test-setup.d.ts.map +1 -0
- package/dist/test-setup.js +35 -0
- package/dist/test-setup.js.map +1 -0
- package/dist/zero-http/test-harness.d.ts +2 -6
- package/dist/zero-http/test-harness.d.ts.map +1 -1
- package/dist/zero-http/test-harness.js +4 -2
- package/dist/zero-http/test-harness.js.map +1 -1
- package/dist/zero-http/transport.d.ts +17 -4
- package/dist/zero-http/transport.d.ts.map +1 -1
- package/dist/zero-http/transport.js +391 -44
- package/dist/zero-http/transport.js.map +1 -1
- package/package.json +14 -4
package/README.md
CHANGED
|
@@ -16,6 +16,10 @@ oreZ makes Zero work on [PGlite](https://pglite.dev) (Postgres in WASM) and [bed
|
|
|
16
16
|
- **Bun** 1.0+ or **Node.js** 20+
|
|
17
17
|
- **Zero** 0.18+ (tested with 0.18.x)
|
|
18
18
|
|
|
19
|
+
Repository development uses the exact Node and Bun versions in `mise.toml`.
|
|
20
|
+
Run checks through `mise exec -- bun run check:all` so native test dependencies
|
|
21
|
+
use the matching Node ABI.
|
|
22
|
+
|
|
19
23
|
## Limitations
|
|
20
24
|
|
|
21
25
|
This is a **development tool only**. Not suitable for production.
|
|
Binary file
|