While building the web app for a new firebase deploy, I have been using:
$ shadow-cljs compile app
Actually, even clearing stuff and then re-compiling, such as:
$ rm -rf .shadow-cljs
$ shadow-cljs compile app
Apparently, the release
command could also be used:
$ shadow-cljs release app
What is the difference between the two? What are the implications of each choice? On a build before a new deployment, what would be the best practice?
Thanks