mobx-react-use-autorun 1.0.1 → 1.0.2

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 +1 -1
  2. package/package.json +2 -1
package/README.md CHANGED
@@ -43,7 +43,7 @@ Publish to npm repository
43
43
  })
44
44
 
45
45
  more usage:<br/>
46
- 表单验证<br/>
46
+ Form validation<br/>
47
47
 
48
48
  import { Button, TextField } from '@mui/material';
49
49
  import { observer, useLocalObservable } from 'mobx-react-use-autorun';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mobx-react-use-autorun",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "React Hook for mobx",
5
5
  "scripts": {
6
6
  "build": "npm install -g typescript@4.6.3 @types/node@17.0.23 ts-node@10.7.0 cross-env@7.0.3 && cross-env TS_NODE_SKIP_PROJECT=true ts-node bin/mobx_react_build.ts",
@@ -8,6 +8,7 @@
8
8
  "push": "npm test npm run build && npm publish"
9
9
  },
10
10
  "main": "./dist/index.js",
11
+ "types": "./dist/main.d.ts",
11
12
  "eslintConfig": {
12
13
  "extends": [
13
14
  "react-app"