Is there currently a way in squint to do a dynamic import/require of a cljs/squint module? I see this is the default behaviour of process-require-clause when we're in the repl (`(if repl ..)` , but is there something equivalent in non-repl mode?
you can use js/import like this probably:
(def x (js/import "./foo.js"))Here is an example of this. You also need to use js-await:
Perfect, thanks for the help 🙏