@effect/atom-solid 4.0.0-beta.71 → 4.0.0-beta.72

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.
@@ -27,7 +27,7 @@ import type * as Atom from "effect/unstable/reactivity/Atom";
27
27
  import * as AtomRegistry from "effect/unstable/reactivity/AtomRegistry";
28
28
  import type { JSX } from "solid-js";
29
29
  /**
30
- * A Solid context that carries the `AtomRegistry` used by atom hooks in the
30
+ * Provides a Solid context that carries the `AtomRegistry` used by atom hooks in the
31
31
  * current owner tree.
32
32
  *
33
33
  * **When to use**
@@ -1,7 +1,7 @@
1
1
  import * as AtomRegistry from "effect/unstable/reactivity/AtomRegistry";
2
2
  import { createComponent, createContext, onCleanup } from "solid-js";
3
3
  /**
4
- * A Solid context that carries the `AtomRegistry` used by atom hooks in the
4
+ * Provides a Solid context that carries the `AtomRegistry` used by atom hooks in the
5
5
  * current owner tree.
6
6
  *
7
7
  * **When to use**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@effect/atom-solid",
3
- "version": "4.0.0-beta.71",
3
+ "version": "4.0.0-beta.72",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "description": "SolidJS bindings for the Effect Atom modules",
@@ -44,7 +44,7 @@
44
44
  },
45
45
  "peerDependencies": {
46
46
  "solid-js": ">=1 <2",
47
- "effect": "^4.0.0-beta.71"
47
+ "effect": "^4.0.0-beta.72"
48
48
  },
49
49
  "devDependencies": {
50
50
  "@solidjs/testing-library": "^0.8.0",
@@ -52,7 +52,7 @@
52
52
  "@testing-library/jest-dom": "^6.9.1",
53
53
  "jsdom": "^29.1.1",
54
54
  "solid-js": "^1.9.12",
55
- "effect": "^4.0.0-beta.71"
55
+ "effect": "^4.0.0-beta.72"
56
56
  },
57
57
  "scripts": {
58
58
  "build": "tsc -b tsconfig.json && pnpm babel",
@@ -29,7 +29,7 @@ import type { JSX } from "solid-js"
29
29
  import { createComponent, createContext, onCleanup } from "solid-js"
30
30
 
31
31
  /**
32
- * A Solid context that carries the `AtomRegistry` used by atom hooks in the
32
+ * Provides a Solid context that carries the `AtomRegistry` used by atom hooks in the
33
33
  * current owner tree.
34
34
  *
35
35
  * **When to use**