-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathproject.clj
45 lines (38 loc) · 1.91 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
(defproject koeeoadi "0.1.0-SNAPSHOT"
:description "A web app for creating text editor themes"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.8.0-RC5"]
[org.clojure/clojurescript "1.7.228"]
[org.clojure/tools.nrepl "0.2.12"]
[org.omcljs/om "1.0.0-alpha32"]
[com.cemerick/piggieback "0.2.1"]
[org.clojure/clojure "1.7.0"]
[figwheel-sidecar "0.5.0-2"]
[binaryage/devtools "0.5.2"]]
:plugins [[lein-cljsbuild "1.1.3"]]
:clean-targets ^{:protect false} ["resources/public/js/out"]
:source-paths ["src/clj" "src/cljs"]
:repl-options {:nrepl-middleware [cemerick.piggieback/wrap-cljs-repl]}
:cljsbuild {:builds [{:id "dev"
:figwheel true
:source-paths ["src/cljs"]
:compiler {:main koeeoadi.core
:asset-path "js/out"
:output-dir "resources/public/js/out"
:output-to "resources/public/js/out/main.js"
:parallel-build true
:compiler-stats true
:verbose true}}
{:id "prod"
:assert true
:source-paths ["src/cljs"]
:compiler {:optimizations :advanced
:output-to "resources/public/js/out/main.js"
:parallel-build true
:compiler-stats true
:verbose true}}]}
:figwheel {:validate-config true
:css-dirs ["resources/public/css/out"]
:server-port 3000})