From a42fac905c8ca1ecd328a3300749d86e94e85729 Mon Sep 17 00:00:00 2001 From: Dobes Vandermeer Date: Mon, 21 Oct 2024 17:05:39 -0700 Subject: [PATCH] Allow newer versions of react This seems to work fine with newer versions of react, but since the dependency range doesn't allow them, it adds to the wall of peer dependency warnings that yarn spits out when we run it. --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 63de3ec..7d150cf 100644 --- a/package.json +++ b/package.json @@ -80,8 +80,8 @@ "webpack-dev-server": "3.9.0" }, "peerDependencies": { - "react": "^16.12.0", - "create-subscription": "^16.12.0" + "react": ">=16.12.0", + "create-subscription": ">=16.12.0" }, "husky": { "hooks": {