This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-11-25
Channels
- # adventofcode (1)
- # announcements (1)
- # beginners (244)
- # calva (20)
- # cider (11)
- # cljs-dev (34)
- # clojure (50)
- # clojure-spec (1)
- # clojure-uk (3)
- # clojurebridge (1)
- # clojurescript (21)
- # code-reviews (1)
- # cursive (19)
- # events (1)
- # expound (1)
- # fulcro (65)
- # hyperfiddle (6)
- # luminus (3)
- # nrepl (3)
- # off-topic (23)
- # protorepl (4)
- # re-frame (18)
- # rum (11)
- # shadow-cljs (77)
- # spacemacs (8)
- # tools-deps (2)
- # unrepl (1)
- # vim (2)
Hi, is there a way for me to define clj
and cljs repls
options, so that when I invoke clj
/`cljs repl` - one will be called with -R:server
and another with -R:client
option? I'm using clj deps
. Tried with cider-clojure-cli-global-options
, but it is global, if I add -R:server
, it will be used for cljs
too.
(I'd like to use both in one project, and giving to client
dependencies and paths of server
doesn't make sense and vice versa)
(I don't use shadow-cljs
, server part is on the jvm
)
No, there’s no way to do this. The assumption is that you normally need the same deps for the Clojure and ClojureScript REPLs and the actual REPL is initialized client-side by CIDER itself.
Or I could just create the repls by myself and only connect from cider, right?
@bozhidar If you don't mind brewing 0.19.0 a little more, I've just pushed compliment 0.3.8-SNAPSHOT with a couple of important class field/method completion fixes
@alexyakushev Not at all. I’ve been swamped with work lately, so delaying the release is fine by me.