Skip to content

Commit

Permalink
added cljsbuild
Browse files Browse the repository at this point in the history
  • Loading branch information
Conaws committed Aug 26, 2016
1 parent 2f73d81 commit 321e079
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,12 @@
[com.stuartsierra/component "0.3.1"]
[http-kit "2.1.18"]
[compojure "1.5.1"]]
:profiles {:dev {:plugins []
:profiles {:dev {:plugins [[lein-cljsbuild "1.1.4"]]
:dependencies [[reloaded.repl "0.2.2"]]
:source-paths ["dev"]}})

:source-paths ["dev"]}
:cljsbuild {:builds [{:source-paths ["src" "dev"]
:compiler {:output-to "target/classes/public/app.js"
:output-dir "target/classes/public/out"
:optimizations :none
:recompile-dependents true
:source-map true}}]}})

0 comments on commit 321e079

Please sign in to comment.