lumo

:lumo: Standalone ClojureScript environment. Currently at version 1.9.0
jaihindhreddy 2018-10-26T07:37:02.000500Z

Does lumo support deps.edn?

jaihindhreddy 2018-10-26T07:45:10.002100Z

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?

mfikes 2018-10-26T11:36:42.003500Z

@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.

mfikes 2018-10-26T11:37:42.004100Z

If your script will only run on macOS, you can just use Shebang "normally." The complexity there is really for Linux.