forked from levand/immuconf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
34 lines (34 loc) · 1.74 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
34
(defproject russellwhitaker/immuconf "0.3.0"
:description "Manage config files 12Factor style in Clojure/ClojureScript projects"
:url "http://github.com/russellwhitaker/immuconf"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/clojurescript "1.9.293"]
[org.clojure/tools.logging "0.3.1"]
[environ "1.1.0"]
[com.taoensso/timbre "4.8.0"]]
:plugins [[lein-cljsbuild "1.1.5"]
[lein-npm "0.6.2"]
[lein-doo "0.1.7"]
[lein-cljfmt "0.5.6"]
[lein-ancient "0.6.10"]
[jonase/eastwood "0.2.3"]]
:npm {:dependencies [[source-map-support "0.4.0"]]}
:cljsbuild
{:builds [{:id "immuconf"
:source-paths ["src"]
:compiler {:output-to "target/immuconf/config.js"
:output-dir "target/immuconf"
:source-map "target/immuconf/config.js.map"
:target :nodejs
:language-in :ecmascript5
:optimizations :advanced}}
{:id "immuconf-test"
:source-paths ["src" "test"]
:compiler {:output-to "target/immuconf-test/config.js"
:output-dir "target/immuconf-test"
:target :nodejs
:language-in :ecmascript5
:optimizations :none
:main immuconf.test-runner}}]})