Fork me on GitHub
#cherry
<
2023-01-03
>
wcohen22:01:27

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?

borkdude22:01:04

@wcohen You can require local js files with (ns foo (:require ["./foo.mjs"]))

wcohen22:01:42

Of course. Thanks!