Does lumo support deps.edn
?
Seems like this will work
lumo -c `clj -Spath`
I guess what I want is to package my clojurescript app in one file so that I can just do lumo app.cljs
. How can I create this app.cljs
given a script and deps.edn
?@jaihindh.reddy see the Shebang Deps section here. I suspect you can take the ideas there and compose lumo
and clj
to achieve the same. That way you can just do app.cljs
or even app
if you chose to name it that way.
If your script will only run on macOS, you can just use Shebang "normally." The complexity there is really for Linux.