This repository has been archived by the owner on Nov 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
project.clj
45 lines (38 loc) · 2.08 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
(defproject rewrite-cljs "0.4.6-SNAPSHOT"
:description "Comment-/Whitespace-preserving rewriting of EDN documents."
:url "https://github.com/clj-commons/rewrite-cljs"
:license {:name "MIT License"
:url "http://opensource.org/licenses/MIT"
:year 2015
:key "mit"}
:dependencies [[org.clojure/clojure "1.10.0"]
[org.clojure/clojurescript "1.10.520"
:exclusions [org.apache.ant/ant]]
[org.clojure/tools.reader "1.3.2"]]
:deploy-repositories [["clojars" {:url "https://clojars.org/repo"
:username :env/clojars_user
:password :env/clojars_pass
:sign-releases false}]]
:clean-targets ^{:protect false} [:target-path :compile-path "out"]
:doo {:build "test"
:karma {:config {"plugins" ["karma-junit-reporter"]
"reporters" ["progress" "junit"]
"junitReporter" {"outputDir" "target/out/test-results"}}}}
:profiles {:dev
{:plugins [[lein-cljsbuild "1.1.7"]
[lein-doo "0.1.11"]]
:cljsbuild {:builds
[{:id "test"
:source-paths ["test"]
:compiler {:output-dir "target/cljsbuild/test/out"
:output-to "target/cljsbuild/test/main.js"
:main rewrite-clj.runner
:optimizations :none
:pretty-print true}}]}}
:doc {:plugins [[funcool/codeina "0.1.0"
:exclusions [org.clojure/clojure]]]
:codeina {:sources ["src"]
:language :clojurescript
:src-dir-uri "https://github.com/clj-commons/rewrite-cljs/blob/master/"
:src-linenum-anchor-prefix "L"}}}
:aliases {"auto-test" ["with-profile" "dev" "do" "clean," "cljsbuild" "auto" "test"]})