-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
22 lines (22 loc) · 1.09 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
(defproject more-macro-musings "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.7.0"]
[org.clojure/clojurescript "1.7.48"]]
:plugins [[lein-doo "0.1.4"]
[lein-cljsbuild "1.0.6"]]
:cljsbuild {
:builds {:test {:source-paths ["src" "test"]
:compiler {:output-to "resources/public/js/testable.js"
:main 'more-macro-musings.runner
:optimizations :none}}
:node-test {:source-paths ["src" "test"]
:compiler {:output-to "target/testable.js"
:output-dir "target"
:main 'more-macro-musings.runner
:optimizations :none
:hashbang false
:pretty true
:target :nodejs}}}})