-
Notifications
You must be signed in to change notification settings - Fork 1
/
project.clj
57 lines (55 loc) · 2.44 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
(defproject macchiato/http "0.1.2"
:description "Http request/response helpers for Macchiato."
:url "https://github.com/macchiato-framework/macchiato-http"
:scm {:name "git"
:url "https://github.com/macchiato-framework/macchiato-http.git"}
:license {:name "MIT License"
:url "http://opensource.org/licenses/MIT"}
:clojurescript? true
:dependencies [[com.cognitect/transit-cljs "0.8.256"]]
:npm {:dependencies []}
:plugins [[codox "0.6.4"]]
:profiles {:test {:dependencies [[org.clojure/clojure "1.10.1" :scope "test"]
[org.clojure/clojurescript "1.10.597" :scope "test"]]
:plugins [[lein-doo "0.1.10"]
[lein-cljsbuild "1.1.7"]]
:cljsbuild
{:builds
{:test
{:source-paths ["src" "test"]
:compiler {:main macchiato.test.runner
:output-dir "target"
:output-to "target/test/http.js"
:target :nodejs
:optimizations :none
:source-map true
:pretty-print true}}}}}
:self-host {:exclusions [org.clojure/clojure
org.clojure/clojurescript]
:tach {:test-runner-ns macchiato.test.runner
:source-paths ["src" "test"]
:force-non-zero-exit-on-test-failure? true
:cache? false
:debug? true}
:plugins [[lein-tach "1.0.0"]]}}
:release-tasks [["vcs" "assert-committed"]
["change" "version" "leiningen.release/bump-version" "release"]
["vcs" "commit" "Release %s"]
["vcs" "tag"]
["change" "version" "leiningen.release/bump-version"]
["vcs" "commit"]]
:aliases
{"test"
["do"
["clean"]
["with-profile" "test" "doo" "node" "test" "once"]]
"test-watch"
["do"
["clean"]
["with-profile" "test" "doo" "node" "test"]]
"test-lumo"
["do"
["clean"]
["with-profile" "self-host" "tach" "lumo" "test"]]
"bump-version"
["change" "version" "leiningen.release/bump-version"]})