-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
34 lines (28 loc) · 1.34 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
(defproject caterbot "0.1.0-SNAPSHOT"
:description "FIXME: write this!"
:url "http://example.com/FIXME"
:dependencies [[org.clojure/clojure "1.6.0"]
[org.clojure/clojurescript "0.0-2657"]
[org.clojure/core.async "0.1.346.0-17112a-alpha"]]
:node-dependencies [[source-map-support "0.2.8"]]
:plugins [[lein-cljsbuild "1.0.4-SNAPSHOT"]
[lein-npm "0.4.0"]]
:source-paths ["src"]
:cljsbuild {
:builds [{:id "hungerbot"
:source-paths ["src"]
:compiler {
:output-to "out/hungerbot.js"
:output-dir "out"
:target :nodejs
:optimizations :none
:source-map true}}
{:id "hungerbot-test"
:source-paths ["src" "test"]
:notify-command ["node" "./run_tests.js"]
:compiler {:output-to "test_out/test.js"
:output-dir "test_out"
:target :nodejs
:optimizations :none
:source-map true}}]
:test-commands {"test" ["node" "./run_tests.js"]}})