rxfy 1.0.0 → 1.0.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 +3 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  rxfy (/ɑɹ ɪks faɪ/) is a small library that lets you declare typed models and the states that query them, then access their data as reactive observables. Normalization keeps your app consistent and reactive at no extra cost. Built on RxJS.
4
4
 
5
+ 📚 **Documentation: [rxfy.vanya2h.me](https://rxfy.vanya2h.me)**
6
+
5
7
  ## Install
6
8
 
7
9
  ```bash
@@ -294,5 +296,6 @@ function createRejected<T>(error: unknown): IWrapped<T, StatusEnum.REJECTED>
294
296
 
295
297
  ## See also
296
298
 
299
+ - [Documentation website](https://rxfy.vanya2h.me)
297
300
  - [rxfy-react](../rxfy-react/README.md): React bindings
298
301
  - [examples/vite-todo](../../examples/vite-todo): full working example
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "rxfy",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "stream-based data management",
5
- "homepage": "https://github.com/vanya2h/rxfy#readme",
5
+ "homepage": "https://rxfy.vanya2h.me",
6
6
  "bugs": {
7
7
  "url": "https://github.com/vanya2h/rxfy/issues"
8
8
  },