forked from plumatic/dommy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
28 lines (28 loc) · 1.3 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
(defproject prismatic/dommy "0.1.1-SNAPSHOT"
:clojurescript? true
:description "No nonsense Clojurescript dom templating and (soon) manipulation"
:url "https://github.com/prismatic/dommy"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:scm {:url "[email protected]:prismatic/dommy.git"}
:pom-addition [:developers [:developer
[:name "Prismatic"]
[:url "http://getprismatic.com"]
[:email "[email protected]"]
[:timezone "-8"]]]
:plugins [[lein-cljsbuild "0.3.0"]]
:hooks [leiningen.cljsbuild]
:dependencies [[crate "0.2.3" :scope "dev"] ;; for perf test
[prismatic/cljs-test "0.0.5"]]
:cljsbuild
{:builds
{:dev {:source-paths ["src"]
:compiler {:output-to "target/main.js"
:optimizations :whitespace
:pretty-print true}}
:test {:source-paths ["src" "test"]
:incremental? true
:compiler {:output-to "target/unit-test.js"
:optimizations :whitespace
:pretty-print true}}}
:test-commands {"unit" ["phantomjs" "target/unit-test.js" "resources/test.html"]}})