Skip to content

Commit

Permalink
Fix target dir output in boot 2.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
amatus committed Oct 22, 2016
1 parent a4ca069 commit 04e7854
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions boot.properties
@@ -1,2 +1,3 @@
BOOT_CLOJURE_VERSION=1.7.0
BOOT_VERSION=2.6.0
BOOT_EMIT_TARGET=no
7 changes: 4 additions & 3 deletions build.boot
Expand Up @@ -22,18 +22,19 @@
"Build gnunet-web for development."
[]
(comp
(serve :dir "target/" :port 8000)
(watch)
(speak)
(hoplon)
(cljs :pretty-print true)))
(cljs)
(serve :port 8000)))

(deftask prod
"Build gnunet-web for production."
[]
(comp
(hoplon)
(cljs :optimizations :advanced)
(prerender)))
(prerender)
(target :dir #{"target"})))

;; vim: set filetype=clojure :

0 comments on commit 04e7854

Please sign in to comment.