This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-11-11
Channels
- # beginners (104)
- # boot (14)
- # cider (10)
- # clojure (38)
- # clojure-australia (3)
- # clojure-dev (11)
- # clojure-spec (8)
- # clojurebridge (2)
- # clojurescript (50)
- # core-async (118)
- # emacs (3)
- # expound (2)
- # fulcro (39)
- # jobs (3)
- # jobs-discuss (17)
- # kaocha (2)
- # lumo (1)
- # off-topic (16)
- # onyx (1)
- # re-frame (1)
- # reitit (24)
- # shadow-cljs (14)
- # sydney (1)
- # tools-deps (14)
- # yada (1)
@thheller to be able to use Atom+ProtoRepl I do really need to add proto-repl dependence to my shadow-cljs.edn? I mean... when using emacs, I just "connect to nrepl" port. Using proto-repl, why do I need to add that dependence (as showing in shadow-cljs docs..)
I can answer this one 😄 Cider adds the dependencies necessary for you. Just a few editors do that. Proto-repl probably does not so this really is a question for the proto-repl. The other one that does it - I think experimentally - is Calva for VSCode
after I've deleted node_modules + compiled files, I'm not able anymore to connect to nrepl (in this project) using atom+protorepl... but I do can connect using emacs (on this very same project). Any thoughs?
I would say you need the proto-repl package for your project
it is present already, but don't work anymore... i'm suspecting that the nrepl package (v nrepl-0.4.5) that is bringing by shadow-cljs is breaking it
I'm having a minification issue when using shadow-cljs release
and I just want to turn it off for now. I thought I could do that with:
:builds {:main {:target :browser
...
:modules {.. some modules...}
:compiler-options {:optimization :simple
:infer-externs :auto}}
But it seems that doesn't have any effect on the minification. I added the infer-externs so I could see if I'm running the right build and it does have an effect. Not sure what's going on.. :thinking_face:This is an unexpectedly nice feature of figwheel-main (that we might be able to use in shadow with little fuss, as it's self-contained https://github.com/bhauman/spell-spec).
Hello! I'm facing an issue to connect to nrepl on Atom+Proto-Repl. When comparing two projects "a" and "b", where "a" works and "b" dont, I see (by shadow-cljs info
) that the nrepl
dependence are different. How can I get the specific library that is bringing that lib to my project? I mean.. I don't have nrepl as a declared dependence, so I think that another one is bringing that. It is possible to build a graph showing who is bringing who?
@gleisonsilva shadow-cljs --cli-info
shows a basic graph
@thheller seens to me that the output of info
and --cli-info
are the same... I can't see diffence among then
at least as version 2.6.23 of shadow-cljs