Fork me on GitHub
#shadow-cljs
<
2017-10-27
>
dimovich09:10:37

is it possible to integrate shadow-cljs into boot build?

dimovich09:10:52

I guess one could make them run in parallel

Jon09:10:54

not sure but heard it been used in lein...

Jon09:10:09

why not use shadow-cljs directly?

dimovich09:10:59

I need to also compile the Clojure backend

Jon09:10:39

oh, that explains...

Jon09:10:30

empty...

thheller13:10:47

@dimovich yes its possible but I don’t recommend it. boot has some oddities that basically destroy all caching

thheller13:10:02

but there is a shadow.cljs.devtools.api namespace

thheller13:10:22

shadow-cljs compile app is the same as calling (shadow.cljs.devtools.api/compile :app)

thheller13:10:43

same for release and the rest

thheller13:10:18

but it also has pretty specific dependency requirement and requires clojure 1.9 for example

dimovich18:10:10

@thheller thanks for the tips