Created
October 4, 2016 00:12
-
-
Save gerred/9da294710f25327a2df73010dc9fdaec to your computer and use it in GitHub Desktop.
This file contains hidden or 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 test "0.1.0-SNAPSHOT" | |
:description "FIXME: write description" | |
:url "http://example.com/FIXME" | |
:dependencies [[cljs-ajax "0.5.8"] | |
[secretary "1.2.3"] | |
[reagent-utils "0.2.0"] | |
[reagent "0.6.0"] | |
[org.clojure/clojurescript "1.9.229" :scope "provided"] | |
[org.clojure/clojure "1.8.0"] | |
[selmer "1.0.9"] | |
[markdown-clj "0.9.89"] | |
[ring-middleware-format "0.7.0"] | |
[metosin/ring-http-response "0.8.0"] | |
[bouncer "1.0.0"] | |
[org.webjars/bootstrap "4.0.0-alpha.3"] | |
[org.webjars/font-awesome "4.6.3"] | |
[org.webjars.bower/tether "1.3.7"] | |
[org.clojure/tools.logging "0.3.1"] | |
[compojure "1.5.1"] | |
[ring-webjars "0.1.1"] | |
[ring/ring-defaults "0.2.1"] | |
[mount "0.1.10"] | |
[cprop "0.1.9"] | |
[org.clojure/tools.cli "0.3.5"] | |
[luminus-nrepl "0.1.4"] | |
[org.webjars/webjars-locator-jboss-vfs "0.1.0"] | |
[luminus-immutant "0.2.2"]] | |
:min-lein-version "2.0.0" | |
:jvm-opts ["-server" "-Dconf=.lein-env"] | |
:source-paths ["src/clj" "src/cljc"] | |
:resource-paths ["resources" "target/cljsbuild"] | |
:target-path "target/%s/" | |
:main test.core | |
:plugins [[lein-cprop "1.0.1"] | |
[lein-cljsbuild "1.1.4"] | |
[lein-immutant "2.1.0"]] | |
:clean-targets ^{:protect false} | |
[:target-path [:cljsbuild :builds :app :compiler :output-dir] [:cljsbuild :builds :app :compiler :output-to]] | |
:figwheel | |
{:http-server-root "public" | |
:nrepl-port 7002 | |
:css-dirs ["resources/public/css"] | |
:nrepl-middleware [cemerick.piggieback/wrap-cljs-repl]} | |
:profiles | |
{:uberjar {:omit-source true | |
:prep-tasks ["compile" ["cljsbuild" "once" "min"]] | |
:cljsbuild | |
{:builds | |
{:min | |
{:source-paths ["src/cljc" "src/cljs" "env/prod/cljs"] | |
:compiler | |
{:output-to "target/cljsbuild/public/js/app.js" | |
:externs ["react/externs/react.js"] | |
:optimizations :advanced | |
:pretty-print false | |
:closure-warnings | |
{:externs-validation :off :non-standard-jsdoc :off}}}}} | |
:aot :all | |
:uberjar-name "test.jar" | |
:source-paths ["env/prod/clj"] | |
:resource-paths ["env/prod/resources"]} | |
:dev [:project/dev :profiles/dev] | |
:test [:project/dev :project/test :profiles/test] | |
:project/dev {:dependencies [[prone "1.1.2"] | |
[ring/ring-mock "0.3.0"] | |
[ring/ring-devel "1.5.0"] | |
[pjstadig/humane-test-output "0.8.1"] | |
[doo "0.1.7"] | |
[binaryage/devtools "0.8.2"] | |
[figwheel-sidecar "0.5.8"] | |
[com.cemerick/piggieback "0.2.2-SNAPSHOT"]] | |
:plugins [[com.jakemccrary/lein-test-refresh "0.14.0"] | |
[lein-doo "0.1.7"] | |
[lein-figwheel "0.5.8"] | |
[org.clojure/clojurescript "1.9.229"]] | |
:cljsbuild | |
{:builds | |
{:app | |
{:source-paths ["src/cljs" "src/cljc" "env/dev/cljs"] | |
:compiler | |
{:main "test.app" | |
:asset-path "/js/out" | |
:output-to "target/cljsbuild/public/js/app.js" | |
:output-dir "target/cljsbuild/public/js/out" | |
:source-map true | |
:optimizations :none | |
:pretty-print true}}}} | |
:doo {:build "test"} | |
:source-paths ["env/dev/clj" "test/clj"] | |
:resource-paths ["env/dev/resources"] | |
:repl-options {:init-ns user} | |
:injections [(require 'pjstadig.humane-test-output) | |
(pjstadig.humane-test-output/activate!)]} | |
:project/test {:resource-paths ["env/dev/resources" "env/test/resources"] | |
:cljsbuild | |
{:builds | |
{:test | |
{:source-paths ["src/cljc" "src/cljs" "test/cljs"] | |
:compiler | |
{:output-to "target/test.js" | |
:main "test.doo-runner" | |
:optimizations :whitespace | |
:pretty-print true}}}}} | |
:profiles/dev {} | |
:profiles/test {}}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment