I have a webpack project, which is built together with another components by SBT. The webpack production build compiles the src provides me with a dist folder, which is built from the src folder, and rest is copied assets. Each time I run the build process, I remove the dist folder, and create it again. I wonder if there is any way to config webpack, to do the build process only if something is really changed, and if yes, to build the dist incrementally. (Im not talking about the watch option, which is for dev time).
Thanks