@dxos/web-context-solid 0.8.4-main.ef1bc66f44 → 0.8.4-main.f466a3d56e

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dxos/web-context-solid",
3
- "version": "0.8.4-main.ef1bc66f44",
3
+ "version": "0.8.4-main.f466a3d56e",
4
4
  "description": "Solid.js integration with web context protocol",
5
5
  "homepage": "https://dxos.org",
6
6
  "bugs": "https://github.com/dxos/dxos/issues",
@@ -8,7 +8,7 @@
8
8
  "type": "git",
9
9
  "url": "https://github.com/dxos/dxos"
10
10
  },
11
- "license": "MIT",
11
+ "license": "FSL-1.1-Apache-2.0",
12
12
  "author": "DXOS.org",
13
13
  "sideEffects": true,
14
14
  "type": "module",
@@ -21,24 +21,21 @@
21
21
  }
22
22
  },
23
23
  "types": "dist/types/src/index.d.ts",
24
- "typesVersions": {
25
- "*": {}
26
- },
27
24
  "files": [
28
25
  "dist",
29
26
  "src"
30
27
  ],
31
28
  "dependencies": {
32
29
  "solid-element": "^1.9.1",
33
- "@dxos/web-context": "0.8.4-main.ef1bc66f44"
30
+ "@dxos/web-context": "0.8.4-main.f466a3d56e"
34
31
  },
35
32
  "devDependencies": {
36
33
  "@solidjs/testing-library": "^0.8.10",
37
- "solid-js": "^1.9.9",
38
- "vite-plugin-solid": "^2.11.10"
34
+ "solid-js": "^1.9.11",
35
+ "vite-plugin-solid": "^2.11.12"
39
36
  },
40
37
  "peerDependencies": {
41
- "solid-js": "^1.9.9"
38
+ "solid-js": "^1.9.11"
42
39
  },
43
40
  "publishConfig": {
44
41
  "access": "public"
package/src/provider.tsx CHANGED
@@ -183,7 +183,9 @@ export function ContextProtocolProvider<T extends UnknownContext>(props: Context
183
183
  }
184
184
 
185
185
  const info = subscriptions.get(callback);
186
- if (!info) continue;
186
+ if (!info) {
187
+ continue;
188
+ }
187
189
 
188
190
  const { consumerHost } = info;
189
191