How do can you get the "build": "react-scripts build" in a package.json to build an unminified version of the code.
I have looked at the answers in this post but they are all too complicated:
How to build a production version of React without minification?
I can see in node_modules/react-scripts/config/webpack.config.js that the build is set by this code:
const isEnvDevelopment = webpackEnv === 'development'
const isEnvProduction = webpackEnv === 'production';
if I added a build-dev in the package.json, how would I make webpackEnv 'development'?