forked from ckirkendall/enfocus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
32 lines (25 loc) · 1014 Bytes
/
project.clj
File metadata and controls
32 lines (25 loc) · 1014 Bytes
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 enfocus "2.1.0-SNAPSHOT"
:description "DOM manipulation tool for clojurescript inspired by Enlive"
: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.5.1"]
[org.clojure/clojurescript "0.0-2138"]
[segments "0.1.0"]
[domina "1.0.2"]
[org.jsoup/jsoup "1.7.2"]]
:plugins [[lein-cljsbuild "1.0.0"]]
: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}}}})