-
Notifications
You must be signed in to change notification settings - Fork 78
/
project.clj
47 lines (47 loc) · 2.4 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
(defproject reagent-forms "0.5.44"
:description "data binding library for Reagent"
:url "https://github.com/yogthos/reagent-forms"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:clojurescript? true
:dependencies [[reagent "0.10.0"]]
:plugins [[codox "0.10.4"]]
:profiles {:dev
{:dependencies [[org.clojure/clojure "1.10.1"]
[org.clojure/clojurescript "1.10.748"]
[json-html "0.4.7"]
[cider/piggieback "0.4.2"]
[figwheel-sidecar "0.5.19"]
[doo "0.1.10" ]]
:plugins [[lein-cljsbuild "1.1.7"]
[lein-figwheel "0.5.19"]
[lein-doo "0.1.11"]]
:source-paths ["src" "dev"]
:resource-paths ["dev"]
:figwheel
{:http-server-root "public"
:nrepl-port 7002
:css-dirs ["resources"]
:nrepl-middleware [cemerick.piggieback/wrap-cljs-repl]}
:clean-targets ^{:protect false}
[:target-path
[:cljsbuild :builds :app :compiler :output-dir]
[:cljsbuild :builds :app :compiler :output-to]]
:cljsbuild {:builds
{:app
{:source-paths ["src" "dev"]
:figwheel {:on-jsload "reagent-forms.page/mount-root"}
:compiler {:main "reagent-forms.app"
:asset-path "js/out"
:output-to "dev/public/js/app.js"
:output-dir "dev/public/js/out"
:source-map true
:optimizations :none
:pretty-print true}}
:test
{:source-paths ["src" "test"]
:compiler {:output-to "out/test.js"
:output-dir "out"
:main "reagent-forms.tests-runner"
:optimizations :none
:pretty-print true}}}}}})