From 5d89471ca6a74916bf345ef742e162c77672d2a2 Mon Sep 17 00:00:00 2001 From: lauren Date: Thu, 14 Nov 2024 15:46:35 -0500 Subject: [PATCH] Export __COMPILER_RUNTIME in stable (#31540) 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 a08110e809..26e22c3432 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,