forked from MarcoPolo/atom-paredit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
32 lines (27 loc) · 1.06 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
(defproject paredit "0.1.0-SNAPSHOT"
:description "FIXME: write this!"
:url "http://example.com/FIXME"
:dependencies [[org.clojure/clojure "1.6.0"]
[org.clojure/clojurescript "0.0-3058"]
[com.cemerick/piggieback "0.1.5"]]
:repl-options {:nrepl-middleware [cemerick.piggieback/wrap-cljs-repl]}
:plugins [[lein-cljsbuild "1.0.5"]]
:clean-targets ["lib/out" "lib/paredit.js" "lib/paredit.js.map"]
:cljsbuild {
:builds [{:id "paredit"
:notify-command ["./notify"]
:source-paths ["cljs"]
:compiler {
:output-to "lib/paredit.js"
:output-dir "lib/out"
:source-map "lib/paredit.js.map"
:target :nodejs
:optimizations :simple}}
{:id "dev"
:notify-command ["./notify"]
:source-paths ["cljs"]
:compiler
{:output-dir "target/devout"
:output-to "target/paredit.js"
:target :nodejs
:optimizations :none}}]})