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 Thanks, man. Your're right... quite obvious :face_with_rolling_eyes:
@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!