leiningen

N.B. The maintainers are on #leiningen on Libera chat IRC. Go there for direct support/bug reports.
Shaitan 2019-10-09T09:48:41.000400Z

how does Leiningen know how to package a uberjar? Is the configuration defined is plugins? I saw that even webapps does work from uberjars with all the assets and configuration...

2019-10-09T13:45:10.001500Z

is it possible to have clojure and clojurescript together under one leiningen project? For example a clojure backend with a clojurescript frontend. If so what would the project.clj look like?

2019-10-09T14:07:03.002900Z

@nicholas.jaunsen yes. Typically with something like lein-figwheel and lein-cljsbuild plugins

2019-10-09T14:07:24.003600Z

There are some lein templates you can use to get an idea of what those setups can look like in a base case.

2019-10-09T14:08:22.005100Z

@kalaneje not sure how to answer that really. The uberjar builds a jar like jar would. It then also includes all of the contents of all of the jars that are your projects dependencies.

2019-10-09T14:54:45.007400Z

@mikerod thanks, found the figwheel-main docs and went from there

2019-10-09T15:03:17.007600Z

yes, that should be helpful