-
-
Save smotti/3759ce297648c8c0f703 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defproject ui "0.1.0" | |
:dependencies [[org.clojure/clojure "1.7.0"] | |
[org.clojure/clojurescript "1.7.170"] | |
[org.omcljs/om "0.9.0"] | |
[racehub/om-bootstrap "0.5.3"] | |
[cljsjs/react "0.14.3-0"] | |
[cljsjs/react-dom "0.14.3-1"] | |
[cljsjs/react-dom-server "0.14.3-0"]] | |
:plugins [[lein-figwheel "0.5.0-1"]] | |
:clean-targets [:target-path "out" "resources/public/cljs"] | |
:source-paths ["src"] | |
:profiles {:dev {:dependencies [[com.cemerick/piggieback "0.2.1"] | |
[figwheel-sidecar "0.5.0-1"]] | |
:repl-options {:nrepl-middleware [cemerick.piggieback/wrap-cljs-repl]}}} | |
:cljsbuild { | |
:builds [{:id "dev" | |
:source-paths ["src"] | |
:figwheel true | |
:compiler {:main "ui.core" | |
:asset-path "cljs/out" | |
:output-to "resources/public/cljs/main.js" | |
:output-dir "resources/public/cljs/out" | |
:optimizations :none | |
:source-map true}}]}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment