-
Notifications
You must be signed in to change notification settings - Fork 1
/
project.clj
34 lines (31 loc) · 1.52 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 genman "0.2.1-SNAPSHOT"
:description "Generator management utility for clojure.spec"
:url "https://github.com/athos/genman"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.9.0" :scope "provided"]
[org.clojure/clojurescript "1.9.946" :scope "provided"]]
:profiles {:dev {:dependencies [[com.gfredericks/test.chuck "0.2.8"]]
:plugins [[lein-cljsbuild "1.1.7"]
[lein-doo "0.1.9"]]}}
:cljsbuild {:builds
{:test
{:source-paths ["src" "test"]
:compiler {:main genman.test-runner
:output-to "target/test/genman.js"
:output-dir "target/test"
:target :nodejs
:optimizations :none}}
:test-min
{:source-paths ["src" "test"]
:compiler {:main genman.test-runner
:output-to "target/test-advanced/genman.js"
:output-dir "target/test-advanced"
:target :nodejs
:optimizations :advanced}}}}
:aliases {"test-all" ["do" ["test"] ["test-cljs"]]
"test-cljs" ["do"
["test-cljs-none" "once"]
["test-cljs-min" "once"]]
"test-cljs-none" ["doo" "node" "test"]
"test-cljs-min" ["doo" "node" "test-min"]})