This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-07-27
Channels
- # beginners (43)
- # boot (1)
- # cider (7)
- # cljdoc (10)
- # clojure (110)
- # clojure-boston (1)
- # clojure-finland (2)
- # clojure-italy (19)
- # clojure-losangeles (1)
- # clojure-new-zealand (1)
- # clojure-nl (4)
- # clojure-spec (34)
- # clojure-uk (163)
- # clojurescript (136)
- # code-reviews (1)
- # component (13)
- # cursive (18)
- # datomic (99)
- # emacs (14)
- # events (4)
- # fulcro (14)
- # hoplon (15)
- # hyperfiddle (3)
- # jobs (3)
- # jobs-discuss (1)
- # lein-figwheel (10)
- # onyx (1)
- # pedestal (8)
- # re-frame (5)
- # reitit (4)
- # rum (1)
- # shadow-cljs (317)
- # spacemacs (24)
- # specter (9)
- # sql (2)
- # tools-deps (6)
- # yada (3)
FYI: do not upgrade to latest sesman
, because it is broken https://github.com/vspinu/sesman/issues/6
@j0ni A bit too late, but still https://github.com/nrepl/lein-nrepl#using-with-cider 🙂
does cider-nrepl's ^:source-dep
always override the version of artifacts in the classpath?
I want to try using a different version of tools.namespace
, and I'm seeing some weird behaviour where the clojure compiler says I have a missing var :thinking_face:
nevermind I think i know what's wrong -- my classpath was calculcated incorrectly because my non-canonicial fork has a different name (so both jars were loaded, an older one and a newer one)
so i added fighweel {:nrepl-port 7888}
to my project.clj then ran lein fighweel
then cider connect
localhost 7888. i evaled something simple (+ 1 1)
and it was successful. however when i evaled my namespaces requires i got java.lang.illegalaccesserror: read-string does not exist
which hints to me that i didnt set something up correctly.