forked from jonase/elements
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
27 lines (23 loc) · 886 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
(defproject elements "0.1.0-SNAPSHOT"
:description "FIXME: write this!"
:url "http://example.com/FIXME"
:dependencies [[org.clojure/clojure "1.5.1"]
[org.clojure/clojurescript "0.0-2173"]
[org.clojure/core.async "0.1.0-SNAPSHOT"]
[reagent "0.4.2"]]
:plugins [[lein-cljsbuild "1.0.2"]]
:source-paths ["src"]
:cljsbuild {
:builds [{:id "elements"
:source-paths ["src"]
:compiler {
:preamble ["reagent/react.js"]
:output-to "elements.js"
:output-dir "out"
:optimizations :none
:source-map true}}
{:id "adv"
:source-paths ["src"]
:compiler {:output-to "elements.js"
:output-dir "out_adv"
:optimizations :advanced}}]})