-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
21 lines (21 loc) · 937 Bytes
/
project.clj
File metadata and controls
21 lines (21 loc) · 937 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(defproject cards-to-read "0.1.0-SNAPSHOT"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.5.1"]
[org.clojure/clojurescript "0.0-2156"]
[org.clojure/core.async "0.1.242.0-44b1e3-alpha"]
[khroma "0.0.2"]
[prismatic/dommy "0.1.2"]]
:source-paths ["src"]
:profiles {:dev
{:plugins [[com.cemerick/austin "0.1.3"]
[lein-cljsbuild "1.0.1"]
[lein-chromebuild "0.3.0"]]
:cljsbuild
{:builds
{:main
{:source-paths ["src"]
:compiler {:output-to "target/unpacked/cards_to_read.js"
:output-dir "target/js"
:optimizations :whitespace
:pretty-print true}}}}}})