How to get a build completion message for nest js?

3 weeks ago 29
ARTICLE AD BOX

If this is for a script, you can check the exit code of the previous command $? and if it equals 0 then it was a success. Or you could chain it with a && to move on if/when it succeeds.

The nest build command doesn't output a message on success, the terminal is just set to a state ready to accept another command as the build command is finished running

Read Entire Article