Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,5 @@ pom.xml.asc
/.idea
.DS_Store
/public/js
/.rebel_readline_history

11 changes: 7 additions & 4 deletions env/dev/cljs/zefstyle/dev.cljs
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
(ns ^:figwheel-no-load zefstyle.dev
(:require [zefstyle.core :as core]
[figwheel.client :as figwheel :include-macros true]))
[devtools.core :as devtools]))

(extend-protocol IPrintWithWriter
js/Symbol
(-pr-writer [sym writer _]
(-write writer (str "\"" (.toString sym) "\""))))

(enable-console-print!)

(figwheel/watch-and-reload
:websocket-url "ws://localhost:3449/figwheel-ws"
:jsload-callback core/mount-root)
(devtools/install!)

(core/init!)
Loading