Skip to content

Instantly share code, notes, and snippets.

@mikechau
Last active April 5, 2025 13:32
Show Gist options
  • Save mikechau/8d2a42f7b9d9b8ec0e24b1bedebc24ba to your computer and use it in GitHub Desktop.
Save mikechau/8d2a42f7b9d9b8ec0e24b1bedebc24ba to your computer and use it in GitHub Desktop.
Forking react-scripts

Forking React Scripts

Problem

You're using create-react-app but you need to do some customizations to the webpack configs while you wait for the CRA team to implement/have a solution for whatever it is you need.

BUT - you do not want to eject as you want to keep up to date with any changes in CRA and possibly eventually move away from your customizationed webpack config and go back to using the mainline.

Solution

CRA's webpack config is in its own package. This is great because, instead of ejecting - you can just fork their package. Then you can make your customizations and update your projects package.json to point to your forked react-scripts package.

You could even publish the package to npm, for now we will just install from GitHub.

This guide assumes you already scaffolded your CRA project.

Guide

  1. Clone the create-react-app repo.
git clone https://github.com/facebookincubator/create-react-app.git
cd create-react-app
  1. Add the remote upstream
git remote add upstream https://github.com/facebookincubator/create-react-app.git
git fetch upstream
  1. Checkout the latest stable tag (1.0.10 as of 7/14/2017):
git checkout tags/v1.0.10 -b $CUSTOM_BRANCH_NAME
  1. Switch to the react-scripts dir
cd packages/react-scripts
  1. Make whatever changes you need, the relevant files are mostly the webpack configs themselves in the config directory.

  2. Initialize your new git repo, etc

  3. Rev the version

npm version patch
# v1.0.11
  1. Check in the changes and push them to your remote
git add package.json
git commit -m "v1.0.11"
git push
git push --tags
  1. Update your projects package.json:
// package.json (with vanilla react-scripts)
...
"react-scripts": "1.0.10"
...
// NEW
// package.json (with custom react-scripts via GitHub)
...
"react-scripts": "$YOUR_GITHUB_REPO_URL#v1.0.11"
  1. Run your node package manager to update
npm install
yarn install

References

facebook/create-react-app#682

@k-funk
Copy link

k-funk commented Aug 3, 2023

For step 6, git filter-repo --subdirectory-filter packages/react-scripts --force is a good option.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment