This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-11-01
Channels
- # babashka (1)
- # beginners (28)
- # calva (28)
- # cider (8)
- # clj-kondo (1)
- # clojars (4)
- # clojure (20)
- # clojure-australia (1)
- # clojure-europe (13)
- # clojure-uk (2)
- # clojurescript (2)
- # conjure (4)
- # core-async (4)
- # cryogen (3)
- # datomic (17)
- # fulcro (3)
- # helix (45)
- # malli (9)
- # off-topic (6)
- # pathom (3)
- # re-frame (13)
- # reitit (17)
- # sci (1)
- # shadow-cljs (9)
- # sql (6)
- # tools-deps (11)
- # vim (17)
Has anyone come across this error? I get it when running shadow-cljs watch main
on a clone of https://github.com/fulcrologic/fulcro-rad-demo
Execution error (IllegalArgumentException) at shadow.build.cljs-bridge/eval14597$loading (cljs_bridge.clj:1).\nNo matching field found: getRegisteredGroups for class com.google.javascript.jscomp.DiagnosticGroups\n"
@U05224H0W Thanks for the pointer and link, just had a read. The versions seem to match up with the dependencies listed on the shadow-cljs clojars page.
this is a dependency conflict so you need to resolve it. don't know what else to tell you.
It seems to me that the authors of react-date-picker
are blindly expecting users to be using css loader. I notice that shadow (rightfully), isn't very happy about that
Failed to inspect file
/home/hlolli/Documents/visitor/node_modules/react-calendar/dist/Calendar.css
it was required from
/home/hlolli/Documents/visitor/node_modules/react-date-picker/dist/entry.js
Would override be the good solution here?
(solved)The line is here https://github.com/wojtekmaj/react-date-picker/blob/master/src/entry.js#L1 But it seems they offer a workaround https://github.com/wojtekmaj/react-date-picker/blob/master/src/entry.nostyle.js so probably solvable without any hacking.