-
Notifications
You must be signed in to change notification settings - Fork 4
/
project.clj
65 lines (53 loc) · 2.75 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
53
54
55
56
57
58
59
60
61
62
63
64
65
(defproject vrbo "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "https://github.com/munen/voicerepublic_dev"
:license {:name "proprietary"
:url "http://voicerepublic.com"}
:dependencies [[org.clojure/clojure "1.8.0" :scope "provided"]
[org.clojure/clojurescript "1.7.228" :scope "provided"]
[reagent "0.5.1"]
[reagent-forms "0.5.15"]
[reagent-utils "0.1.7"]
[secretary "1.2.3"]
[org.clojure/core.incubator "0.1.3"]
[cljs-ajax "0.5.4"]
[cljsjs/moment "2.10.6-4"]
[cljsjs/selectize "0.12.1-1"]
[com.rpl/specter "0.12.0"]]
: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"] ;; app -> dev
:figwheel {:on-jsload vrbo.core/fig-reload}
:compiler {:main vrbo.core
:output-to "public/js/app.js"
:output-dir "public/js/out"
:source-map-timestamp true
:asset-path "/js/out"
:optimizations :none
:pretty-print true}}
:min {:source-paths ["src"] ;; min -> prod
:compiler {:main vrbo.core
:output-to "public/js/app.js"
;;:optimizations :advanced}}}}
:optimizations :whitespace}}}}
:figwheel { :http-server-root "public"
:server-port 3449 ;; default
:nrepl-port 7002
:nrepl-middleware ["cemerick.piggieback/wrap-cljs-repl"]
:css-dirs ["public/css"]}
:profiles { :dev { :dependencies [[prone "1.0.2"]
[lein-doo "0.1.6"]
[pjstadig/humane-test-output "0.7.1"]
[lein-figwheel "0.5.0-6"]
[org.clojure/tools.nrepl "0.2.12"]
[com.cemerick/piggieback "0.2.1"]]
:plugins [[lein-figwheel "0.5.0-6"]
[lein-doo "0.1.6"]]
:doo {:build "test"}
:injections [(require 'pjstadig.humane-test-output)
(pjstadig.humane-test-output/activate!)]}})