Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit bfd238d

Browse files
committedJun 8, 2020
Update Node.js support.
1 parent c73ec65 commit bfd238d

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed
 

‎changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
### Patch
66

7+
- Updated Node.js support to `^10.17.0 || ^12.0.0 || >= 13.7.0`. This is only a correction; the dependency updates with breaking changes happened in previous versions.
78
- Updated dependencies.
89
- Simplified JSX boolean props in tests.
910
- Improved event documentation.

‎package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@
5252
"./package.json": "./package.json"
5353
},
5454
"engines": {
55-
"node": "10 - 12 || >= 13.7"
55+
"node": "^10.17.0 || ^12.0.0 || >= 13.7.0"
5656
},
57-
"browserslist": "Node 10 - 12, Node >= 13.7, > 0.5%, not OperaMini all, not dead",
57+
"browserslist": "Node 10.17 - 11 and Node < 11, Node 12 - 13 and Node < 13, Node >= 13.7, > 0.5%, not OperaMini all, not dead",
5858
"peerDependencies": {
5959
"react": "^16.8.0",
6060
"react-dom": "^16.8.0"

‎readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ const App = () => (
106106

107107
## Support
108108

109-
- Node.js `10 - 12 || >= 13.7`
109+
- Node.js `^10.17.0 || ^12.0.0 || >= 13.7.0`
110110
- Browsers [`> 0.5%, not OperaMini all, not dead`](https://browserl.ist/?q=%3E+0.5%25%2C+not+OperaMini+all%2C+not+dead)
111111

112112
Consider polyfilling:

0 commit comments

Comments
 (0)
Please sign in to comment.