-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathproject.clj
29 lines (24 loc) · 839 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
26
27
28
29
(defproject koans "0.1.0-SNAPSHOT"
:description "FIXME: write this!"
:url "http://example.com/FIXME"
:profiles {:dev
{:dependencies [[specljs "2.9.1"]]}}
:dependencies [[org.clojure/clojure "1.7.0"]
[org.clojure/clojurescript "1.7.228"]
[prismatic/dommy "0.1.2"]
[jayq "2.5.4"]]
:plugins [[lein-cljsbuild "1.1.2"]
[specljs "2.9.1"]]
:source-paths ["src"]
:test-paths ["spec"]
:cljsbuild ~(let [run-specs ["phantomjs" "bin/specljs_runner.js" "out/koans_spec.js"]]
{ :builds {
:prod {
:source-paths ["src"]
:compiler {
:main 'koans.core
:output-to "koans.js"
:output-dir "out"
:optimizations :none
:source-map true}}}
:test-commands {"test" run-specs}}))