don't know if anyone has reported this but (load-file ) doesn't seem to be working in the repl. I'm getting goog.nodeGlobalRequire not found type errors?
My js runtime is a browser tab inside an electron app
does the code you are loading make use of that? under normal circumstances this should never exist or be accessed by anything? this works differently in shadow-cljs so not sure what would use it?
(load-file "src/dev/demo/browser.cljs")
#'demo.browser/the-last-form
cljs.user=>
works fine for meoh. unless you are using this in some kind of nested form and this actually ends up calling (cljs.core/load-file ...), which does indeed call that
since its a REPL special form that doesn't work, so only works at the top level
hmmm gotcha I'll look into it further