-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
project.clj
41 lines (41 loc) · 1.84 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
35
36
37
38
39
40
41
(defproject inflections "0.14.3-SNAPSHOT"
:description "Rails-like inflections for Clojure(Script)."
:url "http://github.com/r0man/inflections-clj"
:author "r0man"
:min-lein-version "2.0.0"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[noencore "0.3.8"]
[org.clojure/clojure "1.11.3"]
[org.clojure/clojurescript "1.11.132" :scope "provided"]]
:aliases {"ci" ["do"
["test"]
["doo" "node" "none" "once"]
["doo" "node" "advanced" "once"]
["lint"]]
"lint" ["do" ["eastwood"]]}
:cljsbuild {:builds [{:id "advanced"
:compiler
{:main inflections.test
:optimizations :none
:output-dir "target/advanced"
:output-to "target/advanced.js"
:parallel-build true
:pretty-print true
:target :nodejs
:verbose false}
:source-paths ["src" "test"]}
{:id "none"
:compiler
{:main inflections.test
:optimizations :advanced
:output-dir "target/none"
:output-to "target/none.js"
:target :nodejs}
:source-paths ["src" "test"]}]}
:deploy-repositories [["releases" :clojars]]
:profiles {:dev {:dependencies [[org.clojure/clojurescript "1.11.132"]]
:plugins [[jonase/eastwood "1.2.3"]
[lein-cljsbuild "1.1.8"]
[lein-difftest "2.0.0"]
[lein-doo "0.1.11"]]}})