-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
25 lines (21 loc) · 1.01 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
(defproject cljs-physics-engine "0.1.0-SNAPSHOT"
:source-paths ["src/cljs"]
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/clojurescript "1.9.854"
:exclusions [org.apache.ant/ant]]]
:plugins [[lein-cljsbuild "1.1.7"]
[lein-doo "0.1.7"]]
:cljsbuild {
:builds [{:id "test"
:source-paths ["src" "test"]
:compiler {:output-to "test-out/js/testable.js"
:target :nodejs
:main cljs-physics-engine.runner
:optimizations :none}}]}
;; Get the test output looking a bit more sane
:doo {:paths {:karma "karma --colors"}}
:user {:dependencies [[pjstadig/humane-test-output "0.8.2"]]
:injections [(require 'pjstadig.humane-test-output)
(pjstadig.humane-test-output/activate!)]}
:profiles {:dev {:dependencies [[pjstadig/humane-test-output "0.8.2"]]}}
:description "A physics engine to model n particles and simple forces between them.")