This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-08-30
Channels
- # announcements (3)
- # asami (20)
- # babashka (15)
- # beginners (47)
- # biff (25)
- # calva (11)
- # catalyst (2)
- # cider (11)
- # clojure (24)
- # clojure-brasil (3)
- # clojure-europe (21)
- # clojure-norway (34)
- # clojure-uk (2)
- # clojurescript (9)
- # clr (2)
- # datomic (10)
- # fulcro (14)
- # hyperfiddle (58)
- # introduce-yourself (1)
- # jobs (3)
- # malli (5)
- # meander (6)
- # missionary (4)
- # nbb (30)
- # off-topic (6)
- # podcasts-discuss (1)
- # shadow-cljs (13)
- # slack-help (5)
- # tools-build (4)
- # vim (20)
- # xtdb (20)
Anyone used https://github.com/LikaloLLC/tourguide.js with shaddow-cljs / npm / no webpack? I can not for the life of me figure out how to get it to import. The readme looks like it should be imported like ["tourguidejs" :as Tourguide]
. Ive also tried ["tourguidejs" :refer Tourguide]
and ["tourguidejs"]
. The compiler doesn't complain about any of them, but Tourguide ends up undefined in everycase.
I was able to get it to work with this ["tourguidejs/tourguide.esm.js$default" :as Tourguide]
I'm not certain thats the best way to require it with shadow-cljs but it might work until you find a better solution
@U05DDT80258 have you tried ["tourguidejs" :default Tourguide]
?