@syncular/server-workers 0.2.1 → 0.3.1

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @syncular/server-workers
2
2
 
3
- The Cloudflare Workers entry for the Syncular v2 sync server (TODO §4.2). It
3
+ The Cloudflare Workers entry for the Syncular sync server (TODO §4.2). It
4
4
  wires the runtime-neutral server core to Workers bindings — **D1** for
5
5
  storage, **R2** for durable segment/blob bytes, secrets for signing and
6
6
  auth — behind a standard Workers module `fetch` handler.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@syncular/server-workers",
3
- "version": "0.2.1",
3
+ "version": "0.3.1",
4
4
  "description": "Cloudflare Workers adapter for the Syncular sync server",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Benjamin Kniffler",
@@ -28,7 +28,7 @@
28
28
  "exports": {
29
29
  ".": {
30
30
  "bun": "./src/index.ts",
31
- "browser": "./src/index.ts",
31
+ "browser": "./dist/index.js",
32
32
  "import": {
33
33
  "types": "./dist/index.d.ts",
34
34
  "default": "./dist/index.js"