This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2021-12-23
Channels
- # adventofcode (21)
- # announcements (4)
- # babashka (35)
- # beginners (36)
- # calva (76)
- # cider (16)
- # clj-kondo (24)
- # clj-on-windows (12)
- # clojure (70)
- # clojure-europe (7)
- # clojure-nl (13)
- # clojure-spec (3)
- # clojure-uk (3)
- # clojurescript (34)
- # conjure (11)
- # cursive (22)
- # datomic (30)
- # deps-new (2)
- # emacs (36)
- # fulcro (28)
- # gratitude (4)
- # honeysql (16)
- # hugsql (8)
- # introduce-yourself (6)
- # jobs (1)
- # malli (4)
- # missionary (6)
- # off-topic (129)
- # other-languages (34)
- # polylith (3)
- # reagent (9)
- # reitit (27)
- # releases (13)
- # remote-jobs (1)
- # reveal (1)
- # shadow-cljs (2)
- # tools-build (3)
- # tools-deps (18)
- # web-security (7)
- # xtdb (4)
Hi all, I'm a bit puzzled on dependency resolution. The compile error I get is:
> npx shadow-cljs compile app
...
shadow-cljs - dependencies updated
[:app] Compiling ...
The required namespace "cljsjs.react-bootstrap" is not available, it was required by ...
however, package cljsjs.react-bootstrap is in shadow-cljs.edn (also added to package.json in case there were hidden js dependencies).
npm install
and npx shadow-cljs classpath
don't show anything amiss.
how can I check what's going on? 🙂 shadow-cljs --verbose compile
shows the same error, but nothing more@chr.andreetta shadow-cljs does not support cljsjs packages. use the npm packages directly instead.
👍 2