Skip to content

Commit

Permalink
Fix: Support react 17 Issue #1662 (#1692)
Browse files Browse the repository at this point in the history
  • Loading branch information
prma85 committed Feb 3, 2022
1 parent ab327e3 commit f836dcd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions core/docz/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "docz",
"version": "2.3.3-alpha.0",
"version": "2.3.3-alpha.1",
"description": "It's has never been so easy to documents your things!",
"license": "MIT",
"main": "dist/index.js",
Expand Down Expand Up @@ -37,7 +37,7 @@
"gatsby": "^2.13.27",
"gatsby-plugin-eslint": "^2.0.5",
"gatsby-plugin-typescript": "^2.1.6",
"gatsby-theme-docz": "2.3.3-alpha.0",
"gatsby-theme-docz": "2.3.3-alpha.1",
"lodash": "^4.17.14",
"marksy": "^8.0.0",
"match-sorter": "^3.1.1",
Expand All @@ -48,7 +48,7 @@
"yargs": "^13.3.0"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
"react": "^16.8.0 || ^17.0.2",
"react-dom": "^16.8.0 || ^17.0.2"
}
}
6 changes: 3 additions & 3 deletions core/gatsby-theme-docz/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gatsby-theme-docz",
"version": "2.3.3-alpha.0",
"version": "2.3.3-alpha.1",
"description": "Gatsby theme created to use Docz",
"license": "MIT",
"author": "Pedro Nauck (pedronauck@gmail.com)",
Expand Down Expand Up @@ -60,8 +60,8 @@
},
"peerDependencies": {
"docz": ">=2.0.0",
"react": "^16.8.0",
"react-dom": "^16.8.0"
"react": "^16.8.0 || ^17.0.2",
"react-dom": "^16.8.0 || ^17.0.2"
},
"gitHead": "74932cd67112bacd1e29780a202d466acdd79535"
}

0 comments on commit f836dcd

Please sign in to comment.