-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
31 lines (26 loc) · 1.05 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
(defproject cljs-base "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:plugins [[lein-cljsbuild "1.1.1"]
[lein-figwheel "0.5.0-1"]]
:clean-targets ^{:protect false} ["out"
"repl"
:target-path]
:dependencies [[org.clojure/clojure "1.7.0"]
[org.clojure/clojurescript "1.7.170"]
[cljsjs/react "0.14.3-0"]
[org.omcljs/om "0.9.0"]]
:hooks [leiningen.cljsbuild]
:cljsbuild {
:builds [{:id "cljs-base"
:source-paths ["src"]
:compiler {
:main cljs-base.core
:asset-path "out"
:output-to "out/main.js"
:output-dir "out"
:verbose true
:optimizations :advanced
:source-map-timestamp true}}]})