@nbottarini/react-observable 0.1.4 → 0.1.5
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 +2 -2
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -9,10 +9,10 @@ React hook for reacting to changes in @nbottarini/observable properties
|
|
|
9
9
|
|
|
10
10
|
Npm:
|
|
11
11
|
```
|
|
12
|
-
$ npm install --save @nbottarini/
|
|
12
|
+
$ npm install --save @nbottarini/react-observable
|
|
13
13
|
```
|
|
14
14
|
|
|
15
15
|
Yarn:
|
|
16
16
|
```
|
|
17
|
-
$ yarn add @nbottarini/
|
|
17
|
+
$ yarn add @nbottarini/react-observable
|
|
18
18
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nbottarini/react-observable",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "React hook for reacting to changes in @nbottarini/observable properties",
|
|
5
5
|
"main": "dist/cjs/index.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -27,8 +27,10 @@
|
|
|
27
27
|
"lint": "eslint . && tsc --noEmit",
|
|
28
28
|
"test": "jest"
|
|
29
29
|
},
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"@nbottarini/observable": "^0.3.0"
|
|
32
|
+
},
|
|
30
33
|
"peerDependencies": {
|
|
31
|
-
"@nbottarini/observable": "*",
|
|
32
34
|
"react": "*"
|
|
33
35
|
},
|
|
34
36
|
"devDependencies": {
|
|
@@ -36,7 +38,6 @@
|
|
|
36
38
|
"@babel/preset-env": "^7.22.10",
|
|
37
39
|
"@babel/preset-react": "^7.22.5",
|
|
38
40
|
"@babel/preset-typescript": "^7.22.5",
|
|
39
|
-
"@nbottarini/observable": "^0.3.0",
|
|
40
41
|
"@rollup/plugin-commonjs": "^25.0.3",
|
|
41
42
|
"@rollup/plugin-node-resolve": "^15.1.0",
|
|
42
43
|
"@rollup/plugin-terser": "^0.4.3",
|