-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathproject.clj
62 lines (55 loc) · 2.58 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
51
52
53
54
55
56
57
58
59
60
61
62
(defproject tixi "0.1.0-SNAPSHOT"
:description "ASCII diagrams editor"
:url "http://textik.com"
:dependencies [[org.clojure/clojure "1.5.1"]
[com.facebook/react "0.10.0"]
[org.clojure/clojurescript "0.0-2202"]
[org.clojars.astashov/quiescent "0.1.4-1-SNAPSHOT"]
[prismatic/dommy "0.1.1"]
[org.clojure/core.async "0.1.301.0-deb34a-alpha"]
[prismatic/schema "0.2.2"]
[cider/cider-nrepl "0.6.1-SNAPSHOT"]
[figwheel "0.1.3-SNAPSHOT"]]
:jvm-opts ["-Xmx1G"]
:plugins [[lein-cljsbuild "1.0.3"]
[com.cemerick/austin "0.1.4"]
[cider/cider-nrepl "0.6.1-SNAPSHOT"]
[lein-figwheel "0.1.3-SNAPSHOT"]]
:profiles {
:dev {
:plugins [[com.cemerick/clojurescript.test "0.3.0"]]}}
:source-paths ["src"]
:figwheel {
:http-server-root "public"
:port 3449
:css-dirs ["resources/public/css"]}
:cljsbuild {
:builds [{:id "dev"
:source-paths ["src" "brepl" "figwheel"]
:compiler {
:output-to "resources/public/tixi.js"
:output-dir "resources/public/out"
:preamble ["react/react_with_addons.min.js" "public/js/codemirror.js"]
:libs ["public/js/drawer.js" "public/js/uuid.js" "public/js/compress.js"]
:optimizations :none
:source-map true}}
{:id "release"
:source-paths ["src"]
:compiler {
:output-to "tixi_prod.js"
:optimizations :advanced
:pretty-print false
:preamble ["react/react_with_addons.min.js" "public/js/codemirror.js"]
:libs ["public/js/drawer.js" "public/js/uuid.js" "public/js/compress.js"]
:externs ["react/externs/react.js" "public/js/externs.js"]
:source-map "tixi_prod.js.map"}}
{:id "test"
:source-paths ["src" "test"]
:notify-command ["phantomjs" :cljs.test/runner "resources/public/js/function-bind-shim.js" "resources/public/js/raf.js" "tixi_test.js"]
:compiler {
:preamble ["react/react_with_addons.min.js" "public/js/codemirror.js"]
:libs ["public/js/drawer.js" "public/js/uuid.js" "public/js/compress.js"]
:output-to "tixi_test.js"
:optimizations :whitespace}}]
:test-commands {"unit"
["phantomjs" :runner "resources/public/js/function-bind-shim.js" "resources/public/js/raf.js" "tixi_test.js"]}})