forked from seancorfield/honeysql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
27 lines (27 loc) · 1.47 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
(defproject honeysql "0.8.3-SNAPSHOT"
:description "SQL as Clojure data structures"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:url "https://github.com/jkk/honeysql"
:scm {:name "git"
:url "https://github.com/jkk/honeysql"}
:dependencies [[org.clojure/clojure "1.8.0"]]
:cljsbuild {:builds {:release {:source-paths ["src"]
:compiler {:output-to "dist/honeysql.js"
:optimizations :advanced
:output-wrapper false
:parallel-build true
:pretty-print false}}
:test {:source-paths ["src" "test"]
:compiler {:output-to "target/test/honeysql.js"
:output-dir "target/test"
:source-map true
:main honeysql.test
:parallel-build true
:target :nodejs}}}}
:doo {:build "test"}
:profiles {:dev {:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/clojurescript "1.9.89"]
[cljsbuild "1.1.3"]]
:plugins [[lein-cljsbuild "1.1.3"]
[lein-doo "0.1.6"]]}})