RN-only build flag

Summary: Previously I had created a RN build, locally, with a few minor differences. That had to be reverted. Instead of reverting and re-applying changes, I'm introducing a flag that can be used in the interim to produce the RN-only builds.

Reviewed By: LukeDefeo

Differential Revision: D50555055

fbshipit-source-id: edface9a1587fb51e54eebe73724032baf985c83
This commit is contained in:
Lorenzo Blasa
2023-10-24 04:18:51 -07:00
committed by Facebook GitHub Bot
parent 05242b4ee9
commit 94120d61aa
4 changed files with 31 additions and 182 deletions

View File

@@ -39,6 +39,10 @@ export async function getEnvironmentInfo(
process.env.FLIPPER_FORCE_VERSION ??
(isProduction ? packageJson.version : '0.0.0');
if (packageJson.reactNativeOnly) {
process.env.FLIPPER_REACT_NATIVE_ONLY = 'true';
}
return {
processId: process.pid,
isProduction,