This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-09-15
Channels
- # aws-lambda (3)
- # beginners (37)
- # boot (294)
- # carry (1)
- # cider (38)
- # cljs-dev (37)
- # cljsjs (88)
- # clojure (187)
- # clojure-android (2)
- # clojure-austin (1)
- # clojure-dusseldorf (9)
- # clojure-hk (3)
- # clojure-italy (12)
- # clojure-russia (36)
- # clojure-spec (55)
- # clojure-uk (27)
- # clojurescript (75)
- # community-development (5)
- # conf-proposals (2)
- # copenhagen-clojurians (3)
- # cursive (9)
- # datomic (54)
- # devcards (5)
- # devops (3)
- # dirac (69)
- # emacs (6)
- # ethereum (1)
- # euroclojure (1)
- # events (3)
- # funcool (1)
- # hoplon (20)
- # immutant (4)
- # luminus (14)
- # midje (4)
- # om (178)
- # om-next (2)
- # onyx (47)
- # pedestal (19)
- # protorepl (20)
- # re-frame (14)
- # reagent (54)
- # ring (2)
- # ring-swagger (7)
- # test-check (10)
- # uncomplicate (11)
- # untangled (9)
- # yada (9)
Howdy all
I'm trying to add DevCards to a Boot project. It's complaining No such namespace: devcards.out.cljs.core.async.impl.channels
. I think the error lies in devcards.cljs.edn
.
{:require [holy-grail.components.page-test]
:init-fns [devcards.core/start-devcard-ui!]}
I also tried it like:
{:require [holy-grail.components.page-test]
:init-fns [holy-grail.components.page-test/devcards]}
holy-grail.components.page-test
is also quite simple.
(ns holy-grail.components.page-test
(:require [holy-grail.components.page :as app.page]
[cljs.test :refer-macros [is]]
[devcards.core :as dc :refer-macros [defcard-rg deftest]]
[reagent.core]))
(defcard-rg page
"This is the `app/page` component."
[app.page/component])
(defn devcards []
(dc/start-devcard-ui!))
(deftest page-test)
With a vanilla dev
build and devcards true
, the devcards.html
builds, but no cards are rendered.
SO CLOSE