I've tried adding a dependency to my deps.edn:
{:deps {cljsjs/js-yaml {:mvn/version "3.3.1-0"}
...}
But I'm not able to call functions from that library.
In the REPL:
cljs.user=> (require '[cljsjs.js-yaml])
cljs.user=> js/safeLoad
Execution error (ReferenceError) at (<cljs repl>:1).
safeLoad is not defined
The instructions I found are for leinigen (project.clj). Do I need to do something special to get it working in deps.edn?