New SCI version dropped which now supports async/await in CLJS!
And new #nbbcljs dropped which uses the newest SCI. Demo:
$ npx nbb@1.4.206
Welcome to nbb v1.4.206!
user=> (defn ^:async foo [] (let [x (await (js/Promise.resolve 1))] (inc x)))
#'user/foo
user=> (foo)
#<Promise 2>


