forked from swannodette/hs-async
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
22 lines (18 loc) · 723 Bytes
/
project.clj
File metadata and controls
22 lines (18 loc) · 723 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
(defproject hs-async "0.1.0-SNAPSHOT"
:description "core.async walk through for Hacker School"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:jvm-opts ^:replace ["-Xmx512m" "-server"]
:dependencies [[org.clojure/clojure "1.5.1"]
[org.clojure/clojurescript "0.0-1934"]
[org.clojure/core.async "0.1.242.0-44b1e3-alpha"]]
:plugins [[lein-cljsbuild "0.3.3"]]
:cljsbuild
{:builds
[{:id "hs-async"
:source-paths ["src/hs_async"]
:compiler {:optimizations :none
:pretty-print false
:output-dir "out"
:output-to "main.js"}}]})