forked from LightTable/LightTable
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
26 lines (20 loc) · 1.29 KB
/
project.clj
File metadata and controls
26 lines (20 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(defproject lighttable "0.1.0"
:description "Light Table is a new interactive IDE that lets you modify running programs and embed anything from websites to games. It provides the real time feedback we need to not only answer questions about our code, but to understand how our programs really work."
:url "http://www.lighttable.com/"
:dependencies [[org.clojure/clojure "1.5.1"]
[crate "0.2.5"]
[fetch "0.2.0" :exclusions [org.clojure/clojure noir]]
[org.clojure/clojurescript "0.0-2138"
:exclusions [org.apache.ant/ant]]
]
:jvm-opts ["-Xmx1g" "-XX:+UseConcMarkSweepGC"] ; cljsbuild eats memory
:cljsbuild {:builds [{:source-paths ["src"]
:compiler {:optimizations :simple
:externs ["externs/jquery.js" "externs/throttle.js" "externs/codemirror.js"]
:source-map "deploy/core/node_modules/lighttable/bootstrap.js.map"
:output-to "deploy/core/node_modules/lighttable/bootstrap.js"
:output-dir "deploy/core/node_modules/lighttable/cljs/"
:pretty-print true}}]}
:plugins [[lein-cljsbuild "1.0.1"]]
:source-paths ["src/"]
)