Fork me on GitHub
#leiningen
<
2019-10-09
>
Shaitan09:10:41

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

skykanin13:10:10

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?

mikerod14:10:03

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

mikerod14:10:24

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

mikerod14:10:22

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

skykanin14:10:45

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

mikerod15:10:17

yes, that should be helpful