This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-12-17
Channels
- # adventofcode (96)
- # beginners (49)
- # boot (3)
- # cider (3)
- # cljs-dev (3)
- # clojure (112)
- # clojure-austin (2)
- # clojure-greece (35)
- # clojure-india (2)
- # clojure-sanfrancisco (1)
- # clojure-spec (1)
- # clojure-sweden (1)
- # clojurescript (27)
- # cursive (4)
- # data-science (1)
- # datomic (33)
- # defnpodcast (1)
- # duct (2)
- # editors (1)
- # emacs (4)
- # events (2)
- # figwheel (4)
- # fulcro (4)
- # hoplon (29)
- # instaparse (1)
- # jobs (1)
- # keechma (4)
- # lein-figwheel (2)
- # om (1)
- # parinfer (4)
- # perun (23)
- # reitit (11)
- # shadow-cljs (8)
- # specter (23)
- # uncomplicate (16)
In your opinion can I remove dependency on user.clj ?
I just updated all the various libraries with Clojure (to 1.9) and Clojurescript
and now locally I get a weird error:
Uncaught TypeError: Cannot read property 'call' of undefined
which is coming from this file apparently
(ns figwheel.connect.build-dev (:require [myns.core] [figwheel.client] [figwheel.client.utils]))
(figwheel.client/start {:on-jsload (fn [& x] (if js/myns.core.mount-root (apply js/myns.core.mount-root x) (figwheel.client.utils/log :debug "Figwheel: :on-jsload hook 'myns.core/mount-root' is missing"))), :build-id "dev", :websocket-url ""})
ah actually I think it was related with dev-tools after all