Blake Friedman
Blake Friedman
Summary: `flow-api-translator` can't handle `module.exports`. Simplest fix is to not identify the bridging file (that we use to register with babel to transpile when run directly) as a flow file....
## Background As part of the move to support changes in the [RFC-0759 React Native Frameworks](https://github.com/react-native-community/discussions-and-proposals/blob/main/proposals/0759-react-native-frameworks.md#template), we're going to have to come up with a semver based versioning scheme to...
Part of RFC-0759, this was removed here: react-native-community/cli/pull/2316
Summary: This gives Frameworks more control in selecting specific tasks and integrating the return types data in their UI. For example piping `stdout` to the user or using packages like...
Summary: We require the wrapper code for in repository calls to these packages directly from node (i.e. using CommonJS). This wrapper code typically sits at the entrypoint of the build...
Summary: Packages that are built and directly run in the monorepo no longer need to worry about conditionally registering themselves to transpile Flow -> JS at runtime. Our build step...
Summary: Cleaning up this env, which became redundant after D56762162. We do, however still check if running under Jest to skip inline transpilation if [process.env.JEST_WORKER_ID](https://jestjs.io/docs/environment-variables#jest_worker_id) exists. Differential Revision: D56879413
Summary: Conform to the style of other packages that are built using the monorepo build script, which don't use the `"main"` field. Instead these utilise: - root level `index.flow.js` →...
Summary: Allows us to `yarn build ios` the helloworld app. Changelog: [Internal] Differential Revision: D57067038
Summary: Adds `app` to allow building and serving your React Native app in a similar structure to the boostrap and build tasks. This is the more comprehensive followup to D57067040....