-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
55 lines (44 loc) · 2.37 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
(defproject brianium/dandy-roll "0.21"
:description "Watermarking in the browser"
:url "https://github.com/brianium/dandy-roll"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:global-vars {*warn-on-reflection* true}
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/clojurescript "1.9.293"]]
:plugins [[lein-figwheel "0.5.8"]
[lein-doo "0.1.7"]
[lein-cljsbuild "1.1.5" :exclusions [[org.clojure/clojure]]]]
:clean-targets ^{:protect false} [:target-path "resources/public/cljs"]
:profiles {:dev {:dependencies [[com.cemerick/piggieback "0.2.1"]
[figwheel-sidecar "0.5.8"]
[lein-doo "0.1.7"]
[devcards "0.2.2"]]
:plugins [;[cider/cider-nrepl "0.14.0"]
]}}
:jar-exclusions [#"test" #"resources" #"public"]
:source-paths ["src"]
:cljsbuild {:builds [{:id "dev"
:source-paths ["src"]
:figwheel true
:compiler {:main "dandy-roll.core"
:output-to "resources/public/cljs/main.js"
:output-dir "resources/public/cljs/out"
:asset-path "cljs/out"}}
{:id "devcards-test"
:source-paths ["src" "test"]
:figwheel {:devcards true}
:compiler {:main runners.browser
:optimizations :none
:asset-path "cljs/tests/out"
:output-dir "resources/public/cljs/tests/out"
:output-to "resources/public/cljs/tests/all-tests.js"
:source-map-timestamp true}}
{:id "devcards-standalone"
:source-paths ["src" "test"]
:compiler {:main runners.browser
:devcards true
:optimizations :advanced
:asset-path "cljs/out"
:output-to "resources/public/dandy-roll.js"}}]
})