shadow-cljs

https://github.com/thheller/shadow-cljs | https://github.com/sponsors/thheller | https://www.patreon.com/thheller
defa 2020-11-30T09:02:36.303300Z

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).

thheller 2020-11-30T09:40:38.304300Z

@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

👍 1
defa 2020-11-30T09:42:40.305800Z

@thheller Thanks, man. Your're right... quite obvious :face_with_rolling_eyes:

2020-11-30T13:47:01.309800Z

@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?

thheller 2020-11-30T17:20:36.310600Z

@neo2551 the test UI is from this library, not related to shadow-cljs. https://github.com/bhauman/cljs-test-display

2020-11-30T17:21:27.311Z

Thanks!