create-react-app
create-react-app copied to clipboard
React Scripts Build
The React Script Build command is working successfully and shows ready to publish, but the commands are still running and don't exit.
"react-scripts": "5.0.1"
👋 Thanks for reporting this!
I was able to reproduce the same behavior with [email protected] — the build finishes successfully but the process does not exit.
What I tried:
- Ran
CI=true npm run build --verbose→ build succeeds but process still hangs. - Adding
&& exit 0to thebuildscript inpackage.jsonforces it to exit as a workaround:"scripts": { "build": "react-scripts build && exit 0" }
Thanks, for your reply