-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
52 lines (40 loc) · 2.18 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
48
49
50
51
52
(defproject sequiturish-demo "0.1.0-SNAPSHOT"
:description ""
:url "https://github.com/evgenykochetkov/sequiturish-demo"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.8.0" :scope "provided"]
[org.clojure/clojurescript "1.8.40" :scope "provided"]
[reagent "0.5.1"]
[sequiturish "0.1.0-SNAPSHOT"]]
:plugins [[lein-cljsbuild "1.1.1"]]
:min-lein-version "2.5.0"
:clean-targets ^{:protect false}
[:target-path
[:cljsbuild :builds :app :compiler :output-dir]
[:cljsbuild :builds :app :compiler :output-to]]
:resource-paths ["public"]
:cljsbuild {:builds {:app {:source-paths ["src"]
:compiler {:output-to "public/js/app.js"
:output-dir "public/js/out"
:asset-path "js/out"
:optimizations :none
:pretty-print true}}}}
:profiles {:dev {:dependencies [[prone "1.1.0"]
[lein-figwheel "0.5.2"]
[org.clojure/tools.nrepl "0.2.12"]
[com.cemerick/piggieback "0.2.1"]]
:plugins [[lein-figwheel "0.5.2"]]
:figwheel {:http-server-root "public"
:nrepl-port 7002
:nrepl-middleware ["cemerick.piggieback/wrap-cljs-repl"]
:css-dirs ["public/css"]}
:cljsbuild {:builds {:app {:source-paths ["env/dev/cljs"]
:compiler {:main "sequiturish-demo.dev"
:source-map true}}}}}
:prod {:cljsbuild {:jar true
:builds {:app
{:source-paths ["env/prod/cljs"]
:compiler
{:optimizations :advanced
:pretty-print false}}}}}})