This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-02-23
Channels
- # aleph (8)
- # aws (2)
- # beginners (36)
- # cider (35)
- # cljs-dev (157)
- # cljsjs (3)
- # cljsrn (5)
- # clojure (97)
- # clojure-dev (5)
- # clojure-gamedev (3)
- # clojure-italy (27)
- # clojure-russia (11)
- # clojure-spec (19)
- # clojure-uk (39)
- # clojured (6)
- # clojurescript (87)
- # clojutre (4)
- # community-development (35)
- # cursive (8)
- # datascript (2)
- # datomic (14)
- # dirac (8)
- # duct (3)
- # figwheel (13)
- # fulcro (22)
- # graphql (20)
- # jobs (1)
- # london-clojurians (1)
- # off-topic (55)
- # onyx (3)
- # parinfer (3)
- # protorepl (39)
- # re-frame (3)
- # reagent (26)
- # ring (7)
- # ring-swagger (2)
- # rum (1)
- # shadow-cljs (107)
- # spacemacs (8)
- # test-check (4)
- # unrepl (3)
@bhauman — took 20m to upgrade to 0.5.15-SNAPSHOT. Seems to work great from MacOS terminal. Also works inside of Cursive — having a little trouble with some REPL commands to print re-frame app-db… Rolling back to old version to see if it has anything to do with new figwheel…
0.5.14: REPL session looks like
(in-ns 'trello-workflow.events)
=> nil
(def x @re-frame.db/app-db)
=> #'trello-workflow.events/x
0.5.15-SNAPSHOT:
dev:cljs.user=> (in-ns 'trello-workflow.events)
dev:trello-workflow.events=> (def x @re-frame.db/app-db)
---- Compiler Warning on <cljs form> line:1 column:9 ----
Use of undeclared Var re-frame.db/app-db
1 (def x @re-frame.db/app-db)
^---
---- Compiler Warning ----
#'trello-workflow.events/x
dev:trello-workflow.events=> x
{:board-lists [],
:move-save-old-board-id nil,
:current-card-comments [],
:new-list-form "",
:name "re-frame",
:
:
:
@bhauman — huh… 0.5.15 gives a warning that 0.5.14 doesn’t give, but I can still access the x
… I guess it still “works”, but something seems amiss?
@bhauman — wow, color output is really awesome… I think I’m going to really miss color in the Cursive REPL!!!!
@genekim Thanks for the info. 🙂 What version of clojurescript were you using before you upgraded figwheel in your example?
Realized after I went to bed that I should have specified ClojureScript versions. For your reference, here’s my project.clj
dependencies.
@genekim can you confirm that you just need to do a lein clean to prevent the behavior you mentioned above? That's hat it took to fix mine