cherry

2023-05-12T19:30:22.666329Z

Is there a way to specify where cherry-cljs/lib/cljs_core.js is actually located or is sed -i my best friend? Use-case: I have a small app that doesn't use WebPack at all, so the JS files are actually all modules that are loaded in browser rather than glued together at the compile step.

borkdude 2023-05-12T19:43:22.758599Z

You can see it in this HTML page: https://squint-cljs.github.io/cherry/ with view source. Hmm, I noticed that there is a bug though, which I'll fix :)

borkdude 2023-05-12T19:44:19.950779Z

See import-map:

{
        "imports": {
          "cherry-cljs": "",
          "cherry-cljs/cljs.core.js": ""
        }
      }
    

1
2023-05-12T19:44:49.471499Z

Oh great, that's just what I was after.