Skip to content

Latest commit

 

History

History

react-modules

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

React custom build

To benefit from some specific features hidden behind flags (such as suspense), we need to make our own build of React from the sources.

Make a custom React suspense build

As explained here:

Generate the packages

Clone the React repository.

Build the packages:

cd /path/to/react
yarn
yarn build react-cache,scheduler --type=NODE

Copy the packages to your project

cp -a /path/to/react/build/node_modules/* /path/to/react-fiber-experiments/react-modules/

Note

The modules in react-modules are aliased, thanks to react-app-rewired with which I overrode config.resolve.

Please update the infos.json file with the exact hash of the git revision you used to make your React custom build.

In the current version, we use [email protected] and [email protected] (installed from npm, not built from React sources).

If you need to also build react and react-dom packages, run:

yarn build dom-client,core,react-cache,scheduler --type=NODE