@knowitsolutions/react-scripts
v3.2.0-3
Published
Configuration and scripts for Create React App.
Downloads
9
Readme
@knowitsolutions/react-scripts
This package is a fork of Create React App (specifically the
react-scripts
package). It's intended to be used in conjuction with create-react-app
like so:
yarn create react-app my-app --scripts-version=@knowitsolutions/react-scripts
# start your app development like you normally would with `create-react-app`
cd my-app
yarn start
The setup of this fork has been modeled after another react-scripts fork: backpack-react-scripts
What is different in our fork?
- source-map-loader added to webpack configuration.
- Source maps enabled by default for dependecies.
- Allow more jest confiuration overrides:
setupTestFrameworkScriptFile
,testMatch
.
Releasing a new version of @knowitsolutions/react-scripts
To publish a new version of
@knowitsolutions/react-scripts
, run the following command:npm run publish prerelease
- If you want to be extra careful, you can publish a prerelease by running this instead:
npm run publish --canary
Update the CHANGELOG.md with the new version, taking care to follow the format of previous releases.
Keeping this fork updated
We wish to keep this fork updated with the upstream repo to benefit from the ongoing open source development
of create-react-app
. To keep this fork up to date, please follow the steps below:
Ensure
master
is in sync withupstream/master
:git checkout master git remote add upstream [email protected]:facebook/create-react-app.git git fetch upstream git reset --hard upstream/master git push --force-with-lease
Rebase
fork
on top of a tagged release onmaster
:git checkout fork git rebase <commit>
Note:
<commit>
should be the SHA-1 of the latest upstream release - not just the latest i.e.upstream/master
Pair with someone else to fix any conflicts and cross examine changes in upstream with changes in our fork.
This is the most time consuming part. Take care to make sure you are not regressing any functionality that we have added in our fork.
Re-name your local, rebased
fork
branch to something else and push it to origin. This will ensure it runs through CI and you can verify your changes.git branch -m <branch> git push origin <branch>
Finally, when we are confident that the rebase has been successful, re-name your branch back to
fork
and push it to origin:git branch -m fork git push --force-with-lease