This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-05-13
Channels
- # beginners (17)
- # boot (16)
- # cider (13)
- # cljs-dev (26)
- # cljsrn (5)
- # clojure (155)
- # clojure-belgium (2)
- # clojure-spec (19)
- # clojure-uk (4)
- # clojurescript (32)
- # community-development (16)
- # core-async (12)
- # cursive (3)
- # datomic (7)
- # hoplon (14)
- # lambdaisland (1)
- # lumo (16)
- # microservices (1)
- # off-topic (3)
- # om (5)
- # onyx (4)
- # protorepl (1)
- # re-frame (1)
- # rum (1)
- # specter (6)
- # unrepl (32)
@richiardiandrea okay thanks I'll try that!
@flyboarder okay great thank you ill look for those tasks
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?
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})
however, I can’t seem to get the devtools to load
I’ve also tried:
(task-options!
cljs {:compiler-options {:asset-path "/main.out"
:parallel-build true
:preloads '[devtools.preload]}
:source-map true})
has anyone else encountered something similar?
@nonrecursive if you use boot-cljsdevtools
you should not need explicit preloads
@richiardiandrea thanks 🙂 I’ve seen that but am hoping to get it working without using that library, even though it looks useful
i looked through the source and it looks like it modifies the compiler options?
Yes well no magic, but it does it on your cljs.edn files iirc
it’s just weird that it’s not working
Definitely, i wanted to make that task working so that I should not need to remember the gory details 😀😀
@nonrecursive try to specify :main
as well, :preloads
might work only with it