-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.clj
More file actions
43 lines (37 loc) · 1.54 KB
/
project.clj
File metadata and controls
43 lines (37 loc) · 1.54 KB
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
(defproject rustyspoon-tutorial "0.0.1"
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/clojurescript "1.9.494"]
[cljs-ajax "0.5.3"]
[re-frame "0.9.2"]
[venantius/accountant "0.1.9"]
[secretary "1.2.3"]
[markdown-clj "0.9.86"]
[garden "1.3.2"]
[fipp "0.6.4"]
[cljsjs/highlight "8.4-0"]]
:plugins [[lein-cljsbuild "1.1.2"]
[lein-figwheel "0.5.0-6"]]
:clean-targets ^{:protect false}
["resources/public/js"]
:figwheel {:server-port 3450
:css-dirs ["resources/public/css"]}
:cljsbuild {:builds
[{:id "dev"
:figwheel true
:source-paths ["src"]
:compiler {:main rustyspoon-tutorial.orbit
:asset-path "/js/dev"
:output-to "resources/public/js/rustyspoon-tutorial.js"
:output-dir "resources/public/js/dev"
:verbose true}}
{:id "prod"
:figwheel true
:source-paths ["src"]
:compiler {:main rustyspoon-tutorial.orbit
:asset-path "/js/prod"
:output-to "resources/public/js/rustyspoon-tutorial.js"
:output-dir "resources/public/js/prod"
:optimizations :simple
:pretty-print false}}]}
:min-lein-version "2.5.0"
)