-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
50 lines (45 loc) · 1.56 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
(defproject com.birdseye-sw/dalap-html "0.1.3"
:description "HTML template renderer using dalap"
:url "http://birdseye-sw.com/oss/dalap-html"
:license {:name "MIT"
:url "http://opensource.org/licenses/MIT"}
:dependencies [[org.clojure/clojure "1.5.1"]
[com.birdseye-sw/dalap "0.1.0"]
[com.birdseye-sw/buster-cljs "0.1.0"]
[org.clojure/clojurescript "0.0-1913"]
[org.clojure/google-closure-library "0.0-20130212-95c19e7f0f5f"]]
:plugins [[lein-cljsbuild "0.3.2"]
[com.birdseye-sw/lein-dalap "0.1.1"]]
:hooks [leiningen.dalap]
:source-paths ["src/clj" "src/cljs"]
:test-paths ["test/clj" "test/cljs"]
:cljsbuild
{
:builds
[{:id :browser-test
:source-paths ["src/cljs", "test/cljs"]
;; :notify-command ["buster_runner.sh"]
:compiler
{:externs ["externs/buster.js"]
:output-to "resources/js/dalap_html_browser_test.js"
:optimizations :simple
:pretty-print true}}
;;;
{:id "node-test"
:source-paths ["src/cljs", "test/cljs"]
;; :notify-command ["buster_runner.sh"]
:compiler
{:externs ["externs/buster.js"]
:output-to "resources/js/dalap_html_node_test.js"
:optimizations :simple
:pretty-print true}}
;;;
{:id :browser-test-optimized
:source-paths ["src/cljs", "test/cljs"]
;; :notify-command ["buster_runner.sh"]
:compiler
{:externs ["externs/buster.js"]
:output-to "resources/js/dalap_html_browser_test_optimized.js"
:optimizations :advanced}}
]}
)