-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproject.clj
32 lines (25 loc) · 1.31 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
(defproject coldnew/left-pad "1.0.0"
:description "Left pad strings"
:url "https://github.com/coldnew/left-pad.clj"
:author "Yen-Chin, Lee"
:license {:name "MIT License"
:url "https://github.com/coldnew/left-pad.clj/blob/master/LICENSE"}
:signing {:gpg-key "C079AE25"}
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/clojurescript "1.8.34"]]
:source-paths ["src"]
:test-paths ["spec"]
:profiles {:dev {:dependencies [[speclj "3.3.1"]]}}
:plugins [[speclj "3.3.1"]
[lein-codox "0.9.4"]
[lein-cljsbuild "1.1.2"]]
:cljsbuild {:builds {:dev {:source-paths ["src" "spec"]
:compiler {:output-to "target/left-pad.js"
:optimizations :simple}
:notify-command ["phantomjs" "bin/speclj" "target/left-pad.js"]}
:prod {:source-paths ["src"]
:compiler {:output-to "target/left-pad.js"
:optimizations :advanced}}}
:test-commands {"test" ["phantomjs" "bin/speclj" "target/left-pad.js"]}}
:deploy-repositories [["releases" :clojars]]
:codox {:source-uri "https://github.com/coldnew/left-pad.clj/blob/master/{filepath}#L{line}"})