cljs-dev

john 2023-04-30T17:41:06.631929Z

Now that add-lib has landed in CLJ is it going to be added to CLJS? I see @mfikes has an impl shown here: https://gist.github.com/mfikes/a81ae3d006830dc34663f976aaf2291b

thheller 2023-04-30T18:52:32.533789Z

trivial to add since there is nothing CLJS specific to do, just something that passes it through to CLJ. when using nrepl or so, then nothing needs to be done at all this they can eval CLJ directly anyways

john 2023-04-30T19:18:55.755499Z

Nice

borkdude 2023-04-30T19:28:50.610139Z

I guess you could also implement that as a tiny macro which calls into JVM add-lib

borkdude 2023-04-30T19:29:35.421879Z

Haven’t checked how Mike implemented it

john 2023-04-30T19:56:53.645919Z

True