Fork me on GitHub
#boot
<
2016-12-04
>
juhoteperi01:12:58

@aengelberg Checkout task works the same, files are added to classpath so c.t.n/refresh will work

juhoteperi01:12:56

The benefit in Boot implementation is that checkout task can use both packages from Lein and Boot, file Lein checkouts only works with other Lein projects

juhoteperi01:12:43

And it should also work better with Cljs libs

aengelberg01:12:56

Thank you, that helps

juhoteperi01:12:11

In Lein, changes to cljs files in checkouts don't trigger automatic recompilation if I recall correctly

juhoteperi01:12:29

(Unless you manually configure cljsbuild paths to include checkout paths)

martinklepsch04:12:28

@aengelberg if your other (checkout) lib also uses boot you can use something like boot watch pom jar install to continiusly install into ~/.m2

richiardiandrea06:12:00

Good news, I had a couple of very good sessions working on boot-reload's support for figwheel client and thanks to the Conj I can now reload js files. TODO: css and maybe deps.js (figwheel sends it at some point)

aengelberg10:12:59

wait, so I do need some additional process to be continuously installing into ~/.m2 in order for reloaded.repl to work across subprojects?

aengelberg10:12:35

When I get the change, I'll just try some stuff out and see for myself what the limitations are exactly.

martinklepsch10:12:00

@aengelberg yes you need the other process if you want to use checkouts. Another alternative is to just add the path to the project to :source-paths or similar but then you would need to make sure all dependencies are satisfied yourself.

pesterhazy16:12:41

@richiardiandrea sounds awesome! I assume the main benefit over current boot-reload behavior would be better error messages?

richiardiandrea16:12:46

@pesterhazy yes and if we extract the client and make it a common thing it is easier to add features/fix bugs, more interest from both user bases

richiardiandrea16:12:13

Actually it is already very modular, we just maybe need a client artifact on clojars if Bruce is interested