From d4025a80385b675218517253abff72d4055312dc Mon Sep 17 00:00:00 2001 From: Peter Coles Date: Thu, 23 Jun 2022 10:52:26 -0400 Subject: [PATCH] Update react peer dependency to include react 17 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit There are “No New Changes” in react 17 (https://reactjs.org/blog/2020/10/20/react-v17.html), so there should be no issue with bumping up this peer dependency from 16 to 17. --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 8c212a1..ef86e25 100644 --- a/package.json +++ b/package.json @@ -26,8 +26,8 @@ "webpack": "^3.11.0" }, "peerDependencies": { - "react": ">=15.0.0 <= 16", - "react-dom": ">=15.0.0 <= 16" + "react": ">=15.0.0 <= 17", + "react-dom": ">=15.0.0 <= 17" }, "scripts": { "dev": "webpack --watch",