From cdf8f96d03c96e5abe8ea4fe4c0bc248fe62a894 Mon Sep 17 00:00:00 2001 From: Lauren Tan Date: Thu, 14 Nov 2024 10:16:41 -0500 Subject: [PATCH] Export __COMPILER_RUNTIME in stable In order to make use of the compiler in stable releases (eg React 19 RC, canary), we need to export the compiler runtime in the stable channel as well. --- packages/react/index.stable.js | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/react/index.stable.js b/packages/react/index.stable.js index a08110e809bd1..26e22c343223e 100644 --- a/packages/react/index.stable.js +++ b/packages/react/index.stable.js @@ -9,6 +9,7 @@ export { __CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE, + __COMPILER_RUNTIME, act, Children, Component,