Guest User

Untitled

a guest
Sep 14th, 2016
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Diff 1.56 KB | None | 0 0
  1. [jrheard@MacBook-Air:~/dev/voke] (ai *) 🚂  git diff -w project.clj
  2. diff --git a/project.clj b/project.clj
  3. index d1c85c8..24710b6 100644
  4. --- a/project.clj
  5. +++ b/project.clj
  6. @@ -8,6 +8,7 @@
  7.                   [org.clojure/clojurescript "1.7.170"]
  8.                   [org.clojure/core.async "0.2.374"
  9.                    :exclusions [org.clojure/tools.reader]]
  10. +                 [binaryage/dirac "RELEASE"]
  11.                   [figwheel-sidecar "0.5.0"]
  12.                   [prismatic/plumbing "0.5.2"]
  13.                   [prismatic/schema "1.0.4"]
  14. @@ -19,11 +20,19 @@
  15.  
  16.    :clean-targets ^{:protect false} ["resources/public/js/compiled" "target"]
  17.  
  18. +  :repl-options {:port             8230
  19. +                 :nrepl-middleware [dirac.nrepl/middleware]
  20. +                 :init             (do
  21. +                                     (require 'dirac.agent)
  22. +                                     (dirac.agent/boot!))}
  23. +
  24.    :cljsbuild {:builds
  25.                [{:id           "dev"
  26.                  :source-paths ["src"]
  27. -                :figwheel {:on-jsload "voke.core/main"}
  28. +                :figwheel     {:on-jsload "voke.core/main"
  29. +                               :repl false}
  30.                  :compiler     {:main                 voke.core
  31. +                               :preloads             [dirac.runtime.preload]
  32.                                 :asset-path           "js/compiled/out"
  33.                                 :output-to            "resources/public/js/compiled/voke.js"
  34.                                 :output-dir           "resources/public/js/compiled/out"
Add Comment
Please, Sign In to add comment