Is there a way to extend wonderful create-react-app
with my own libs, webpack configs, dotfiles, etc., but keep it up to date?
I mean, I want to eject
it, then polish it to my needs but get the latest updates without big pain, i.e. tracking the repo manually, looking for diffs, copying and pasting and so on.
Yes, actually you can! What you do is that you fork, modify and publish
react-scripts
and refer to those when scaffolding withcreate-react-app
:Here you can read more about
react-scripts
.Here is an article about how to fork and modify
react-scripts
to your own needs.It might be that
custom-react-scripts
already has implemented what you are looking for, ie SASS or decorators. Here is an article aboutcustom-react-scripts
and here is the package.