This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-11-24
Channels
- # aws (14)
- # beginners (111)
- # boot (12)
- # cider (1)
- # cljsrn (7)
- # clojure (65)
- # clojure-dusseldorf (1)
- # clojure-germany (7)
- # clojure-greece (10)
- # clojure-italy (13)
- # clojure-poland (7)
- # clojure-russia (7)
- # clojure-spec (53)
- # clojure-uk (29)
- # clojurescript (27)
- # community-development (9)
- # cursive (2)
- # data-science (1)
- # datomic (17)
- # emacs (16)
- # events (6)
- # fulcro (155)
- # graphql (8)
- # instaparse (1)
- # leiningen (30)
- # lumo (29)
- # om-next (3)
- # other-languages (46)
- # pedestal (11)
- # portkey (7)
- # re-frame (13)
- # reagent (6)
- # ring (8)
- # rum (1)
- # shadow-cljs (75)
- # sql (1)
- # timbre (3)
- # unrepl (128)
there has any way skip compile some namespaces for aot task? (eg. the ^:skip-aot
of lein)
I'm looking at https://github.com/adzerk-oss/boot-cljs-repl I see:
(deftask dev []
(comp (watch)
(cljs-repl) ; order is important!!
(cljs)))
is there an example somewhere that includes interacting with cider cljs repl too ?@qqq From Emacs you can do cider-connect (or cider-jack-in) and then (ns boot.user)
followed by (start-repl)
. That’s your cljs repl
I'm 1. running "boot repl -c (start-repl)" 2. then forwarding the ws port to localhost : 4001 3. trying to cider connect to localyhost 4001 (which is NOT nrepl, but instead is the ws port)
my current build.boot looks like:
(comp
(repl :port 6001)
(watch)
(garden ...)
(reload ...)
(cljs-repl ...)
(cljs ...)
(target ...))
Getting an exception "java.lang.ClassNotFoundException: schema.core.ConditionalSchema" from adzerk.boot-cljs.util/deserialize-object util.clj: 65
. I assume I need to inject a dependency somewhere, but just adding it to the build.boot file didn't help. Thoughts?
@dave.dixon is schema.core
your custom code?