-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
35 lines (29 loc) · 1.41 KB
/
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
30
31
32
33
34
35
(defproject clinp "0.1.0-SNAPSHOT"
:description "FIXME: write this!"
:url "http://github.com/dtackett/clinp"
:dependencies [[org.clojure/clojure "1.5.1"]
[org.clojure/clojurescript "0.0-2202"]
[speclj "3.0.2"]]
:plugins [[lein-cljsbuild "1.0.3"]
;; speclj
[speclj "3.0.2"]]
:source-paths ["src"]
:cljsbuild {
:builds {
:final {:id "clinp"
:source-paths ["src"]
:compiler {
:output-to "target/clinp.js"
:output-dir "target/clinp"
:optimizations :whitespace
:source-map "target/clinp.js.map"}}
:dev {:id "clinp"
:source-paths ["src" "spec"]
:compiler {
:output-to "target/clinp.js"
:output-dir "target"
:optimizations :whitespace
:pretty-print true}
:notify-command ["phantomjs"
"bin/phantom/spec-runner.js"
"bin/phantom/spec-runner.html"]}}})