Skip to content

Instantly share code, notes, and snippets.

@AndyMoreland
Created July 10, 2015 08:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AndyMoreland/b1f5a3bf055fd14f4edc to your computer and use it in GitHub Desktop.
Save AndyMoreland/b1f5a3bf055fd14f4edc to your computer and use it in GitHub Desktop.
[cider/cider-nrepl "0.8.2"]
[cljs-tooling "0.1.3" :exclusions [[org.clojure/clojure]]]
[compliment "0.2.0" :exclusions [[org.clojure/clojure]]]
[org.clojure/java.classpath "0.2.0" :exclusions [[org.clojure/clojure]]]
[org.clojure/tools.namespace "0.2.5" :exclusions [[org.clojure/clojure]]]
[org.clojure/tools.trace "0.7.8" :exclusions [[org.clojure/clojure]]]
[org.tcrawley/dynapath "0.2.3" :exclusions [[org.clojure/clojure]]]
[clojure-complete "0.2.3" :scope "test" :exclusions [[org.clojure/clojure]]]
[org.clojure/clojure "1.6.0"]
[org.clojure/clojurescript "0.0-3211"]
[com.google.javascript/closure-compiler "v20150126"]
[args4j "2.0.26"]
[com.google.code.findbugs/jsr305 "1.3.9"]
[com.google.code.gson/gson "2.2.4"]
[com.google.guava/guava "18.0"]
[com.google.javascript/closure-compiler-externs "v20150126"]
[com.google.protobuf/protobuf-java "2.5.0"]
[com.google.truth/truth "0.24"]
[junit "4.10"]
[org.hamcrest/hamcrest-core "1.1"]
[org.clojure/data.json "0.2.6"]
[org.clojure/google-closure-library "0.0-20140718-946a7d39"]
[org.clojure/google-closure-library-third-party "0.0-20140718-946a7d39"]
[org.clojure/tools.reader "0.9.1"]
[org.mozilla/rhino "1.7R5"]
[org.clojure/tools.nrepl "0.2.7" :scope "test" :exclusions [[org.clojure/clojure]]]
[re-com "0.5.4"]
[com.andrewmcveigh/cljs-time "0.3.2"]
[com.cemerick/austin "0.1.5"]
[com.cemerick/piggieback "0.1.3"]
[re-frame "0.4.1"]
[org.clojure/core.async "0.1.346.0-17112a-alpha"]
[org.clojure/tools.analyzer.jvm "0.1.0-beta12"]
[org.clojure/core.memoize "0.5.6"]
[org.clojure/core.cache "0.6.3"]
[org.clojure/data.priority-map "0.0.2"]
[org.clojure/tools.analyzer "0.1.0-beta12"]
[org.ow2.asm/asm-all "4.1"]
[reagent "0.5.0"]
[cljsjs/react "0.12.2-5"]
[secretary "1.2.3"]
[com.cemerick/clojurescript.test "0.2.3-20140317.141743-3"]
{:user {:plugins [[cider/cider-nrepl "0.9.1"]
[lein-deps-tree "0.1.2"]]
:dependencies [[org.clojure/tools.nrepl "0.2.7"]]}}
(defproject testingfoo "0.1.0-SNAPSHOT"
:dependencies [[org.clojure/clojure "1.6.0"]
[org.clojure/clojurescript "0.0-3211"]
[reagent "0.5.0"]
[re-frame "0.4.1"]
[re-com "0.5.4"]
[secretary "1.2.3"]]
:source-paths ["src/clj"]
;; :repl-options {:nrepl-middleware [cemerick.piggieback/wrap-cljs-repl]}
:plugins [[lein-cljsbuild "1.0.6"]
[lein-figwheel "0.3.3"]]
:clean-targets ^{:protect false} ["resources/public/js/compiled" "target"]
:figwheel {:nrepl-port 7888
:css-dirs ["resources/public/assets/css"]}
:cljsbuild {:builds [{:id "dev"
:source-paths ["src/cljs"]
:figwheel {:on-jsload "testingfoo.core/mount-root"}
:compiler {:main testingfoo.core
:output-to "resources/public/js/compiled/app.js"
:output-dir "resources/public/js/compiled/out"
:asset-path "js/compiled/out"
:source-map-timestamp true}}
{:id "min"
:source-paths ["src/cljs"]
:compiler {:main testingfoo.core
:output-to "resources/public/js/compiled/app.js"
:optimizations :advanced
:pretty-print false}}]})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment