cloned the create-react-app repository and made some modifications to it. Now, I want to use my updated version to create React projects locally. Essentially, I'd like to use a command like npx create-custom-react-app to generate new React projects using my custom version.
How can I set this up so that I can use my modified create-react-app version to initialize React projects locally?
I attempted to use yarn link to link my local version of create-react-app to my global npx setup, but I wasn't able to get it working as expected. What I was expecting:
I hoped that after linking my custom version with yarn link, I would be able to run npx create-custom-react-app and create new React projects based on my modified version.