-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathproject.clj
37 lines (34 loc) · 1.73 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
(defproject carto-crayon "0.1.0-SNAPSHOT"
:description "Style your geographic data"
:url "http://github.com/asolove/carto-crayon"
:dependencies [[org.clojure/clojure "1.5.1"]
[org.clojure/tools.reader "0.8.2"]
;; CLJS
[org.clojure/clojurescript "0.0-2127"]
[org.clojure/core.async "0.1.267.0-0d7780-alpha"]
[secretary "0.4.0"]
[markdown-clj "0.9.36"]
[cljs-http "0.1.2"]
[om "0.1.0-SNAPSHOT"]]
:plugins [[lein-cljsbuild "1.0.0"]]
:cljsbuild {
:builds [{:id "dev"
:source-paths ["src"]
:compiler {
:output-to "resources/public/js/app.js"
:output-dir "resources/public/js/out"
:optimizations :none
:source-map true
:externs ["om/externs/react.js" "lib/topojson.js"]}}
{:id "release"
:source-paths ["src"]
:compiler {
:output-to "resources/public/js/app.js"
:source-map "resources/public/js/app.js.map"
:optimizations :advanced
:pretty-print false
:output-wrapper false
:preamble ["om/react.min.js"]
:externs ["om/externs/react.js" "lib/topojson.js"]
:closure-warnings
{:non-standard-jsdoc :off}}}]})