-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathproject.clj
More file actions
24 lines (24 loc) · 1.24 KB
/
project.clj
File metadata and controls
24 lines (24 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
(defproject maze "0.1.0-SNAPSHOT"
:description "Maze generator and solver"
:url "http://costa-rica.github.io/maze"
:license {:name "MIT"
:url "mit"}
:dependencies [[org.clojure/clojure "1.5.1"]
[org.clojure/clojurescript "0.0-2156"]
[org.clojure/core.async "0.1.267.0-0d7780-alpha"]]
:plugins [[lein-cljsbuild "1.0.2"]
[com.cemerick/clojurescript.test "0.2.2"]
[com.cemerick/austin "0.1.4"]]
:hooks [leiningen.cljsbuild]
:profiles {:dev {:plugins [[com.cemerick/clojurescript.test "0.2.3-SNAPSHOT"]]}}
:cljsbuild {:builds [{:source-paths ["src-cljs" "test"]
:compiler {:output-to "target/main.js"
:optimizations :whitespace
:pretty-print true}}
{:id "test"
:source-paths ["src-cljs" "test"]
:notify-command ["phantomjs" :cljs.test/runner "target/main.js"]
:compiler {:output-to "target/main.js"
:optimizations :whitespace
:pretty-print true}}]
:test-commands {"unit-tests" ["phantomjs" :runner "target/main.js"]}})