-
Notifications
You must be signed in to change notification settings - Fork 11
/
project.clj
executable file
·34 lines (28 loc) · 1000 Bytes
/
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
(defproject cuttle "1.1"
:description "A user interface for the ClojureScript compiler."
:url "https://github.com/oakmac/cuttle"
:license {:name "MIT License"
:url "https://github.com/oakmac/cuttle/blob/master/LICENSE.md"
:distribution :repo}
:source-paths ["src-clj"]
:dependencies
[[org.clojure/clojure "1.6.0"]
[org.clojure/clojurescript "0.0-2760"]
[org.clojure/core.async "0.1.346.0-17112a-alpha"]
[hiccups "0.3.0"]
[quiescent "0.1.4"]
[sablono "0.2.22"]]
:plugins [[lein-cljsbuild "1.0.3"]]
:cljsbuild
{:builds
[{:id "main"
:source-paths ["src-cljs"]
:compiler {:optimizations :whitespace
:output-to "app/js/main.js"}}
{:id "main-min"
:source-paths ["src-cljs"]
:compiler
{:externs ["externs/react-0.11.0.js" "externs/misc.js"]
:output-to "app/js/main.min.js"
:optimizations :advanced
:pretty-print false}}]})