-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathproject.clj
33 lines (26 loc) · 1.03 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
(defproject enfocus "2.1.2-SNAPSHOT"
:description "DOM manipulation tool for clojurescript inspired by Enlive"
:author "Creighton Kirkendall"
:url "http://ckirkendall.github.io/enfocus-site"
:license {:name "Eclipse Public License - v 1.0"
:url "http://www.eclipse.org/legal/epl-v10.html"
:distribution :repo}
:min-lein-version "2.2.0"
:source-paths ["src/clj" "src/cljs"]
:dependencies [[org.clojure/clojure "1.6.0"]
[org.clojure/clojurescript "0.0-2234"]
[fresnel "0.2.2"]
[domina "1.0.3"]
[org.jsoup/jsoup "1.7.2"]]
:plugins [[lein-cljsbuild "1.0.4-SNAPSHOT"]]
:hooks [leiningen.cljsbuild]
:cljsbuild
{:crossovers [enfocus.enlive.syntax]
:crossover-jar true
:builds {:deploy
{:source-paths ["src/cljs"]
;:jar true ; no needed anymore
:compiler
{:output-to "dev-resources/public/js/deploy.js"
:optimizations :whitespace
:pretty-print true}}}})