Skip to content

Instantly share code, notes, and snippets.

@smotti
Created January 4, 2016 07:56
Show Gist options
  • Save smotti/3759ce297648c8c0f703 to your computer and use it in GitHub Desktop.
Save smotti/3759ce297648c8c0f703 to your computer and use it in GitHub Desktop.
(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