From cb84e8995fe1b9404aadf7e16ba567a6fc4c2939 Mon Sep 17 00:00:00 2001 From: Lauren Tan Date: Thu, 26 Dec 2024 13:49:06 -0500 Subject: [PATCH] [rcr] Relax react peer dep requirement There's no real reason to restrict the React peer dep to non-experimental, so relax it. --- compiler/packages/react-compiler-runtime/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/packages/react-compiler-runtime/package.json b/compiler/packages/react-compiler-runtime/package.json index 575ec847a5807..d72f168c56aad 100644 --- a/compiler/packages/react-compiler-runtime/package.json +++ b/compiler/packages/react-compiler-runtime/package.json @@ -9,7 +9,7 @@ "src" ], "peerDependencies": { - "react": "^17.0.0 || ^18.0.0 || ^19.0.0" + "react": "^17.0.0 || ^18.0.0 || ^19.0.0 || ^0.0.0-experimental" }, "scripts": { "build": "rimraf dist && rollup --config --bundleConfigAsCjs",