This repository was archived by the owner on Mar 21, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.clj
More file actions
30 lines (30 loc) · 1.37 KB
/
project.clj
File metadata and controls
30 lines (30 loc) · 1.37 KB
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
(defproject dwarf "0.1.2-SNAPSHOT"
:description "A bunch of test and date utilities for Clojure(Script) projects."
:url "https://github.com/RackSec/dwarf"
: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.946"]
[clj-time "0.14.2"]
[com.andrewmcveigh/cljs-time "0.5.2"]]
:plugins [[lein-cljsbuild "1.1.7"]]
:cljsbuild
{:builds
{:default {:source-paths ["src"]
:compiler {:optimizations :whitespace
:pretty-print true}}
:test {:source-paths ["src" "test"]
:compiler {:output-to "out/test.js"
:optimizations :whitespace
:pretty-print true
:main "dwarf.cljs-test-runner"}}}}
:profiles {:dev {:dependencies [[doo "0.1.8"]]
:cljfmt {:indents {let-flow [[:inner 0]]}
:file-pattern #"\.clj[sxc]?$"}
:plugins [[lein-doo "0.1.8"]
[lein-cljfmt "0.5.7"]]}}
:uberjar {:aot :all
:omit-source true
:cljsbuild {:jar true
:builds {:default {:compiler {:optimizations :advanced
:pretty-print false}}}}})