2017-03-10 00:22:56 +00:00
|
|
|
(defproject reagent "0.6.1"
|
2014-11-06 19:21:38 +00:00
|
|
|
:url "http://github.com/reagent-project/reagent"
|
2013-12-19 12:11:02 +00:00
|
|
|
:license {:name "MIT"}
|
|
|
|
:description "A simple ClojureScript interface to React"
|
2014-11-29 17:30:24 +00:00
|
|
|
|
2016-04-29 19:29:18 +00:00
|
|
|
:dependencies [[org.clojure/clojure "1.8.0"]
|
2016-04-29 07:34:36 +00:00
|
|
|
[org.clojure/clojurescript "1.8.51"]
|
2016-11-17 00:11:35 +00:00
|
|
|
[cljsjs/react-dom "15.4.0-0"]
|
|
|
|
[cljsjs/react-dom-server "15.4.0-0"]]
|
2015-02-07 08:30:20 +00:00
|
|
|
|
2017-03-10 22:00:56 +00:00
|
|
|
:plugins [[lein-cljsbuild "1.1.5"]
|
2015-11-17 01:29:14 +00:00
|
|
|
[codox "0.9.0"]]
|
2015-02-07 08:30:20 +00:00
|
|
|
|
2014-11-29 17:30:24 +00:00
|
|
|
:source-paths ["src"]
|
2015-05-11 16:36:11 +00:00
|
|
|
|
|
|
|
:codox {:language :clojurescript
|
2015-09-08 19:49:05 +00:00
|
|
|
:exclude clojure.string}
|
2015-05-11 16:36:11 +00:00
|
|
|
|
2015-02-07 08:30:20 +00:00
|
|
|
:profiles {:test {:cljsbuild
|
2015-10-14 14:09:02 +00:00
|
|
|
{:builds {:client {:source-paths ["test"]
|
|
|
|
:compiler
|
|
|
|
{:main "reagenttest.runtests"}}}}}
|
2014-11-29 22:26:42 +00:00
|
|
|
|
2017-03-10 22:00:56 +00:00
|
|
|
:fig [{:dependencies [[figwheel "0.5.9"]]
|
|
|
|
:plugins [[lein-figwheel "0.5.9"]]
|
2015-02-11 18:06:38 +00:00
|
|
|
:source-paths ["demo"] ;; for lighttable
|
|
|
|
:resource-paths ["site" "outsite"]
|
|
|
|
:figwheel {:css-dirs ["site/public/css"]}
|
|
|
|
:cljsbuild
|
|
|
|
{:builds
|
|
|
|
{:client
|
2016-05-27 10:55:13 +00:00
|
|
|
{:figwheel true
|
2015-10-14 14:09:02 +00:00
|
|
|
:compiler {:source-map true
|
2015-02-11 18:06:38 +00:00
|
|
|
:optimizations :none
|
2016-04-30 10:43:18 +00:00
|
|
|
;; :recompile-dependents false
|
2015-02-11 18:06:38 +00:00
|
|
|
:output-dir "outsite/public/js/out"
|
|
|
|
:asset-path "js/out"}}}}}]
|
2016-04-30 20:45:04 +00:00
|
|
|
|
2015-02-07 08:30:20 +00:00
|
|
|
:site {:resource-paths ^:replace ["outsite"]
|
2014-11-29 17:30:24 +00:00
|
|
|
:figwheel {:css-dirs ^:replace ["outsite/public/css"]}
|
2015-02-07 08:30:20 +00:00
|
|
|
:cljsbuild
|
|
|
|
{:builds {:client
|
|
|
|
{:notify-command ["node" "bin/gen-site.js"]}}}}
|
2016-04-30 20:45:04 +00:00
|
|
|
|
2015-02-07 08:30:20 +00:00
|
|
|
:prod [:site
|
|
|
|
{:cljsbuild
|
|
|
|
{:builds {:client
|
2015-02-10 17:20:48 +00:00
|
|
|
{:compiler {:optimizations :advanced
|
2015-02-07 08:30:20 +00:00
|
|
|
:elide-asserts true
|
|
|
|
:pretty-print false
|
2015-09-11 10:35:06 +00:00
|
|
|
;; :pseudo-names true
|
2015-02-07 08:30:20 +00:00
|
|
|
:output-dir "target/client"}}}}}]
|
2015-02-11 18:06:38 +00:00
|
|
|
|
2015-10-10 10:37:58 +00:00
|
|
|
:webpack {:cljsbuild
|
|
|
|
{:builds {:client
|
|
|
|
{:compiler
|
|
|
|
{:foreign-libs
|
|
|
|
[{:file "target/webpack/bundle.js"
|
|
|
|
:file-min "target/webpack/bundle.min.js"
|
|
|
|
:provides ["cljsjs.react.dom"
|
2015-11-20 17:57:00 +00:00
|
|
|
"cljsjs.react.dom.server"
|
2016-04-29 19:29:18 +00:00
|
|
|
"cljsjs.react"]
|
|
|
|
:requires []}]}}}}}
|
2015-10-10 10:37:58 +00:00
|
|
|
|
2015-10-14 14:09:02 +00:00
|
|
|
:prod-test [:prod :test]
|
2016-04-30 20:45:04 +00:00
|
|
|
|
2016-05-27 10:55:13 +00:00
|
|
|
:dev [:fig :test]
|
|
|
|
|
|
|
|
:dev-notest [:fig]}
|
2014-11-29 17:30:24 +00:00
|
|
|
|
|
|
|
:clean-targets ^{:protect false} [:target-path :compile-path
|
|
|
|
"outsite/public/js"
|
|
|
|
"outsite/public/site"
|
|
|
|
"outsite/public/news"
|
2015-02-10 13:18:56 +00:00
|
|
|
"outsite/public/css"
|
2014-11-29 17:30:24 +00:00
|
|
|
"outsite/public/index.html"
|
|
|
|
"out"]
|
|
|
|
|
2015-02-07 08:30:20 +00:00
|
|
|
:cljsbuild {:builds {:client
|
|
|
|
{:source-paths ["src"
|
|
|
|
"demo"
|
|
|
|
"examples/todomvc/src"
|
|
|
|
"examples/simple/src"
|
|
|
|
"examples/geometry/src"]
|
2016-04-30 10:43:18 +00:00
|
|
|
:compiler {:parallel-build true
|
2016-05-27 10:55:13 +00:00
|
|
|
:main "reagentdemo.core"
|
2016-04-30 10:43:18 +00:00
|
|
|
:output-to "outsite/public/js/main.js"}}}}
|
2016-04-30 20:45:04 +00:00
|
|
|
|
2014-11-29 17:30:24 +00:00
|
|
|
:figwheel {:http-server-root "public" ;; assumes "resources"
|
2015-02-07 08:30:20 +00:00
|
|
|
:repl false})
|