Fork me on GitHub
#boot
<
2017-05-13
>
toomstoxx00:05:54

@richiardiandrea okay thanks I'll try that!

toomstoxx00:05:14

@flyboarder okay great thank you ill look for those tasks

sooheon04:05:01

Hey, I’m using bootlaces, and a simple boot build-jar push-snapshot complains “missing jar file or repo not found” does this maybe have to do with also needing to call the target task?

nonrecursive15:05:18

hey y’all, i’m trying to get cljs devtools to work in my project and have this in my build.boot:

(task-options!
  cljs {:compiler-options {:asset-path "/main.out"
                           :parallel-build true}
        :preloads '[devtools.preload]
        :source-map true})

nonrecursive15:05:31

however, I can’t seem to get the devtools to load

nonrecursive15:05:47

I’ve also tried:

(task-options!
  cljs {:compiler-options {:asset-path "/main.out"
                           :parallel-build true
                           :preloads '[devtools.preload]}
        :source-map true})

nonrecursive15:05:01

has anyone else encountered something similar?

richiardiandrea15:05:34

@nonrecursive if you use boot-cljsdevtools you should not need explicit preloads

nonrecursive15:05:57

@richiardiandrea thanks 🙂 I’ve seen that but am hoping to get it working without using that library, even though it looks useful

nonrecursive15:05:08

i looked through the source and it looks like it modifies the compiler options?

richiardiandrea15:05:42

Yes well no magic, but it does it on your cljs.edn files iirc

nonrecursive15:05:33

it’s just weird that it’s not working

richiardiandrea15:05:54

Definitely, i wanted to make that task working so that I should not need to remember the gory details 😀😀

darwin20:05:25

@nonrecursive try to specify :main as well, :preloads might work only with it

darwin20:05:32

I’m not sure tough