I have a deploy.sh
file that will call webpack
like:
webpack --config webpack.prod.js
Does that call return something that I can use to know if the build has been successful or not? Because I'd like to know if my deploy.sh
script should continue or not.
Any other solutions to this?