-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproject.clj
25 lines (22 loc) · 978 Bytes
/
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
(defproject infinitelives/infinitelives.utils "0.1.2-SNAPSHOT"
:description "Support utilities for cljs games"
:url "https://github.com/infinitelives"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.7.0"]
[org.clojure/clojurescript "0.0-3308"]
[org.clojure/core.async "0.1.346.0-17112a-alpha"]
[org.clojure/core.match "0.3.0-alpha4"]]
:plugins [[lein-cljsbuild "1.0.6"]]
:source-paths ["src/cljs" "src/clj"]
:test-paths ["test"]
:cljsbuild
{
:builds {:test
{:source-paths ["src" "test"]
:compiler {:output-to "resources/test/compiled.js"
:optimizations :whitespace
:pretty-print true}}}
:test-commands {"test" ["phantomjs"
"resources/test/test.js"
"resources/test/test.html"]}})