-
Notifications
You must be signed in to change notification settings - Fork 1
/
project.clj
27 lines (23 loc) · 1.15 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
(defproject kioo-docs "0.1.6"
:description "kioo documentation site"
:url "tba"
:dependencies [[org.clojure/clojure "1.6.0"]
[org.clojure/clojurescript "0.0-2234"]
[kioo "0.4.1-SNAPSHOT"]
[om "0.6.4"]
[markdown-clj "0.9.44"]
[cljs-ajax "0.2.6"]
[org.clojure/core.async "0.1.303.0-886421-alpha"]
[secretary "1.1.1"]]
:plugins [[lein-cljsbuild "1.0.3"]]
:source-paths ["src"]
:resource-paths ["resources"]
:cljsbuild {:builds {:prod {:source-paths ["src/cljs"],
:compiler {:output-to "resources/js/site.js"
:output-dir "resources/js/out"
:optimizations :advanced
:pretty-print false
:preamble ["js/react.js"]
:externs ["js/react.js"]
:closure-warnings {:externs-validation :off
:non-standard-jsdoc :off}}}}})