is there a way to reference a self-contained local .mjs file that's in a cherry-based project as an es6 js dependency, without having to go through the magic of making it into a separate npm package and depending on it etc etc?
@wcohen You can require local js files with (ns foo (:require ["./foo.mjs"]))
Of course. Thanks!