@evolu/react 2.0.7 → 2.0.8

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 CHANGED
@@ -1,3 +1,15 @@
1
1
  # Evolu for React
2
2
 
3
3
  [Evolu](https://github.com/evoluhq/evolu) for [React](https://react.dev).
4
+
5
+ ## Documentation
6
+
7
+ For detailed information and usage examples, please visit [evolu.dev](https://www.evolu.dev).
8
+
9
+ ## Community
10
+
11
+ The Evolu community is on [GitHub Discussions](https://github.com/evoluhq/evolu/discussions), where you can ask questions and voice ideas.
12
+
13
+ To chat with other community members, you can join the [Evolu Discord](https://discord.gg/2J8yyyyxtZ).
14
+
15
+ [![Twitter URL](https://img.shields.io/twitter/url/https/twitter.com/evoluhq.svg?style=social&label=Follow%20%40evoluhq)](https://twitter.com/evoluhq)
package/dist/index.js CHANGED
@@ -29,4 +29,4 @@ export * from "@evolu/common/public";
29
29
  * Evolu.create(Database);
30
30
  * ```
31
31
  */
32
- export const create = EvoluReactLive.pipe(Layer.use(EvoluWebLive), makeCreateEvoluReact);
32
+ export const create = EvoluReactLive.pipe(Layer.provide(EvoluWebLive), makeCreateEvoluReact);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@evolu/react",
3
- "version": "2.0.7",
3
+ "version": "2.0.8",
4
4
  "description": "Evolu for React",
5
5
  "keywords": [
6
6
  "evolu",
@@ -34,16 +34,16 @@
34
34
  "react-dom": "^18.2.0",
35
35
  "typescript": "^5.3.2",
36
36
  "vitest": "^0.34.6",
37
- "@evolu/common": "2.0.0",
38
- "@evolu/common-react": "2.0.0",
39
- "@evolu/common-web": "2.0.0",
37
+ "@evolu/common": "2.0.5",
38
+ "@evolu/common-react": "2.0.2",
39
+ "@evolu/common-web": "2.0.1",
40
40
  "@evolu/tsconfig": "0.0.2",
41
41
  "eslint-config-evolu": "1.0.0"
42
42
  },
43
43
  "peerDependencies": {
44
- "@evolu/common": "^2.0.0",
45
- "@evolu/common-react": "^2.0.0",
46
- "@evolu/common-web": "^2.0.0",
44
+ "@evolu/common": "^2.0.5",
45
+ "@evolu/common-react": "^2.0.2",
46
+ "@evolu/common-web": "^2.0.1",
47
47
  "@types/react-dom": "^18.2.7",
48
48
  "react-dom": "^18.2.0"
49
49
  },
package/src/index.ts CHANGED
@@ -32,6 +32,6 @@ export * from "@evolu/common/public";
32
32
  * ```
33
33
  */
34
34
  export const create = EvoluReactLive.pipe(
35
- Layer.use(EvoluWebLive),
35
+ Layer.provide(EvoluWebLive),
36
36
  makeCreateEvoluReact,
37
37
  );