Skip to content

Instantly share code, notes, and snippets.

@benzen
Created September 20, 2015 20:44

Revisions

  1. benzen revised this gist Sep 20, 2015. 1 changed file with 0 additions and 1 deletion.
    1 change: 0 additions & 1 deletion build.boot
    Original file line number Diff line number Diff line change
    @@ -8,7 +8,6 @@
    :optimizations :none
    :compiler-options {
    :main "our-child.devcards"
    :devcards true
    :closure-defines {'our-child.configuration.host "http://localhost:4000"
    'our-child.configuration.ws-host "ws://localhost:4000"}})
    (reload)))
  2. benzen created this gist Sep 20, 2015.
    15 changes: 15 additions & 0 deletions build.boot
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,15 @@
    (deftask devcards []
    (comp
    (serve :dir "frontend/target/")
    (watch)
    (speak)
    (cljs :unified true
    :source-map true
    :optimizations :none
    :compiler-options {
    :main "our-child.devcards"
    :devcards true
    :closure-defines {'our-child.configuration.host "http://localhost:4000"
    'our-child.configuration.ws-host "ws://localhost:4000"}})
    (reload)))
    )