This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2021-03-07
Channels
- # announcements (19)
- # babashka (19)
- # beginners (76)
- # bitcoin (2)
- # calva (1)
- # chlorine-clover (1)
- # cider (7)
- # clara (1)
- # clj-kondo (1)
- # cljsrn (1)
- # clojars (4)
- # clojure (139)
- # clojure-dev (65)
- # clojure-europe (2)
- # clojure-uk (2)
- # clojurescript (7)
- # community-development (3)
- # conjure (15)
- # core-async (5)
- # cursive (11)
- # data-science (9)
- # duct (6)
- # fulcro (4)
- # honeysql (12)
- # jobs (3)
- # jobs-discuss (3)
- # keechma (1)
- # malli (31)
- # meander (14)
- # midje (1)
- # off-topic (21)
- # pathom (6)
- # practicalli (3)
- # quil (7)
- # re-frame (10)
- # reitit (6)
- # slack-help (4)
- # tree-sitter (6)
- # xtdb (1)
🙏 Pls help me test the new, compile-time check of query validity in Fulcro, especially if you have any non-trivial app (already tested on RAD-demo) - simply change your fulcro dependency to {:git/url "
(which is latest Fulcro develop + 1 commit) and restart shadow-cljs (if you are running the backend, you can likely leave it be, this change is only relevant for the frontend). Share whether it works for you! 🙏
To test, add eg an empty {}
into a query. (Beware - the check doesn't work for queries inside lambdas)
You can also add to your deps.edn
this alias
:aliases {:jh/fulcro {:override-deps {com.fulcrologic/fulcro {:git/url "", :sha "dae6a795eee6fcc5e6bb3df9872b54f26b980fd6"}}}
and then activate it in shadow-cljs.edn
:
{:deps {:aliases [:dev :test :jh/fulcro]} ...