To benefit from some specific features hidden behind flags (such as suspense), we need to make our own build of React from the sources.
As explained here:
Clone the React repository.
Build the packages:
cd /path/to/react
yarn
yarn build react-cache,scheduler --type=NODE
cp -a /path/to/react/build/node_modules/* /path/to/react-fiber-experiments/react-modules/
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