I have to run npm run build
for any small changes on the app, even for a text box. However, it gets annoying and inefficient when the application size gets bigger and bigger. Is there any way of taking a build for the only part that is changed?
My package.json file includes:
"scripts": {
"build": "react-scripts build"
}