-
Notifications
You must be signed in to change notification settings - Fork 4
/
project.clj
54 lines (46 loc) · 2.13 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
(defproject breaking-point "0.1.2"
:description "Quickly define and subscribe to screen breakpoints for re-frame apps"
:url "https://github.com/gadfly361/breaking-point"
:license {:name "MIT"}
:scm {:name "git"
:url "https://github.com/gadfly361/breaking-point"}
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/clojurescript "1.9.908"]
[reagent "0.7.0"]
[re-frame "0.10.5"]
[com.7theta/re-frame-fx "0.2.1"]]
:plugins [[lein-cljsbuild "1.1.5"]]
:min-lein-version "2.5.3"
:source-paths ["src/main"]
:clean-targets ^{:protect false} ["dev-resources/public/js/compiled" "target"]
:profiles
{:dev
{:dependencies [[secretary "1.2.3"]
[binaryage/devtools "0.9.4"]
[day8.re-frame/re-frame-10x "0.3.2"]
[re-frisk "0.5.3"]]
:plugins [[lein-figwheel "0.5.13"]]}}
:cljsbuild
{:builds
[{:id "dev"
:source-paths ["src/demo" "src/main"]
:figwheel {:on-jsload "breaking-point.core-demo/mount-root"}
:compiler {:main breaking-point.core-demo
:output-to "dev-resources/public/js/compiled/app.js"
:output-dir "dev-resources/public/js/compiled/out"
:asset-path "js/compiled/out"
:source-map-timestamp true
:preloads [devtools.preload
day8.re-frame-10x.preload
re-frisk.preload]
:closure-defines {"re_frame.trace.trace_enabled_QMARK_" true}
:external-config {:devtools/config {:features-to-install :all}}}}
{:id "min"
:source-paths ["src/demo" "src/main"]
:compiler {:main breaking-point.core-demo
:output-to "dev-resources/public/js/compiled/app.js"
:optimizations :advanced
:closure-defines {goog.DEBUG false}
:pretty-print false}}
]}
)