This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-11-30
Channels
- # adventofcode (4)
- # aleph (1)
- # announcements (7)
- # aws (10)
- # babashka (23)
- # beginners (23)
- # calva (20)
- # chlorine-clover (13)
- # cider (17)
- # clj-kondo (13)
- # cljfx (9)
- # cljsrn (9)
- # clojure (98)
- # clojure-australia (1)
- # clojure-dev (15)
- # clojure-europe (127)
- # clojure-nl (4)
- # clojure-sanfrancisco (3)
- # clojure-uk (98)
- # clojurescript (25)
- # community-development (8)
- # core-async (15)
- # cryogen (9)
- # cursive (7)
- # data-science (1)
- # datascript (5)
- # datomic (3)
- # devcards (2)
- # fulcro (5)
- # graalvm (1)
- # helix (8)
- # jackdaw (1)
- # jobs (5)
- # kaocha (17)
- # malli (5)
- # meander (5)
- # off-topic (37)
- # pathom (33)
- # pedestal (3)
- # re-frame (12)
- # reitit (1)
- # remote-jobs (3)
- # sci (1)
- # shadow-cljs (6)
- # testing (1)
- # vim (6)
- # vrac (5)
Is there a way in shadow-cljs
to pass arguments to clojure
? Like clj -Sdeps '{:mvn/local-repo "foo"}'
. Reason being that I want to use a different local maven repo when building in a CI pipeline (gitlab).
@defa no there is not but you can just as well just use clj
directly. doesn't matter from shadow-cljs perspective. just use clj -m shadow.cljs.devtools.cli release app
or so. that would be identical to shadow-cljs release app
@thheller Hello, thanks a gain for your work in shadow-cljs. I am using the browser-test target, and I love it. I have a small observation though, and I don't know if it is my browser are small bug: when a test fails, and the output of the test is fairly big, I wish we could pretty print the results or expand horizontally the results. For now we can only scrool horizontally, and I believe the arrow on the left of the restuls is made for expanding the result. What do you think?
@neo2551 the test UI is from this library, not related to shadow-cljs. https://github.com/bhauman/cljs-test-display
Thanks!