@evolu/nodejs 1.0.1-preview.11 → 1.0.1-preview.12

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.
@@ -45,7 +45,7 @@ const createNodeJsRelayWithDeps = (deps) => async ({ port = 443, name = SimpleNa
45
45
  }
46
46
  const storage = createRelaySqliteStorage(depsWithSqlite)({
47
47
  onStorageError: log.storageError,
48
- ...(isOwnerWithinQuota && { isOwnerWithinQuota }),
48
+ isOwnerWithinQuota,
49
49
  });
50
50
  const server = createServer();
51
51
  const wss = new WebSocketServer({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@evolu/nodejs",
3
- "version": "1.0.1-preview.11",
3
+ "version": "1.0.1-preview.12",
4
4
  "description": "Evolu for Node.js",
5
5
  "author": "Daniel Steigerwald <daniel@steigerwald.cz>",
6
6
  "license": "MIT",
@@ -30,11 +30,11 @@
30
30
  "shx": "^0.4.0",
31
31
  "typescript": "^5.9.2",
32
32
  "vitest": "^4.0.4",
33
- "@evolu/common": "6.0.1-preview.29",
33
+ "@evolu/common": "6.0.1-preview.30",
34
34
  "@evolu/tsconfig": "0.0.2"
35
35
  },
36
36
  "peerDependencies": {
37
- "@evolu/common": "^6.0.1-preview.29"
37
+ "@evolu/common": "^6.0.1-preview.30"
38
38
  },
39
39
  "engines": {
40
40
  "node": ">=22.0.0"
@@ -96,7 +96,7 @@ const createNodeJsRelayWithDeps =
96
96
 
97
97
  const storage = createRelaySqliteStorage(depsWithSqlite)({
98
98
  onStorageError: log.storageError,
99
- ...(isOwnerWithinQuota && { isOwnerWithinQuota }),
99
+ isOwnerWithinQuota,
100
100
  });
101
101
 
102
102
  const server = createServer();