-
Notifications
You must be signed in to change notification settings - Fork 42
/
project.clj
20 lines (20 loc) · 934 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(defproject org-html-slides "0.0.1-SNAPSHOT"
:min-lein-version "2.0.0"
:dependencies [[org.clojure/clojure "1.5.1"]
[org.clojure/clojurescript "0.0-1896"]]
:plugins [[lein-cljsbuild "0.3.3"]]
:library-path "lib/jars"
:source-paths ["lib/domina/src/cljs" "lib/one/src/lib/cljs"]
:cljsbuild {:builds
{:development
{:source-paths ["src/cljs"]
:compiler {:output-to "out/development/org-html-slideshow.js"
:output-dir "out/development"
:optimizations :whitespace
:pretty-print true}}
:production
{:source-paths ["src/cljs"]
:compiler {:output-to "production/org-html-slideshow.js"
:output-dir "production"
:optimizations :advanced
:pretty-print false}}}})