-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
project.clj
85 lines (63 loc) · 3.22 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
(defproject superstructor/re-frame-fetch-fx "lein-git-inject/version"
:description "A re-frame effects handler for fetching resources (including across the network)."
:url "https://github.com/superstructor/re-frame-fetch-fx.git"
:license {:name "MIT"}
:dependencies [[org.clojure/clojure "1.11.1" :scope "provided"]
[org.clojure/clojurescript "1.11.60" :scope "provided"
:exclusions [com.google.javascript/closure-compiler-unshaded
org.clojure/google-closure-library
org.clojure/google-closure-library-third-party]]
[thheller/shadow-cljs "2.25.3" :scope "provided"]
[re-frame "1.3.0" :scope "provided"]]
:plugins [[day8/lein-git-inject "0.0.15"]
[lein-shadow "0.4.1"]
[lein-shell "0.5.0"]]
:git-inject {
:ignore-dirty? true
}
:profiles {:dev {:dependencies [[binaryage/devtools "1.0.7"]]
:plugins [[com.github.liquidz/antq "RELEASE"]
[lein-pprint "1.3.2"]]}}
:middleware [leiningen.git-inject/middleware]
:npm-dev-deps [[karma "6.3.4"]
[karma-chrome-launcher "3.1.0"]
[karma-cljs-test "0.1.0"]
[karma-junit-reporter "2.0.1"]
[shadow-cljs "2.25.3"]]
:jvm-opts ["-Xmx2g"]
:source-paths ["src"]
:test-paths ["test"]
:resource-paths ["run/resources"]
:shadow-cljs {:nrepl {:port 8777}
:builds {:browser-test
{:target :browser-test
:ns-regexp "-test$"
:test-dir "target/test"
:devtools {:http-port 8021
:http-root "target/test"}}
:karma-test
{:target :karma
:ns-regexp "-test$"
:output-to "target/karma-test.js"}}}
:shell {:commands {"karma" {:windows ["cmd" "/c" "karma"]
:default-command "karma"}
"open" {:windows ["cmd" "/c" "start"]
:macosx "open"
:linux "xdg-open"}}}
:aliases {"watch" ["with-profile" "dev" "do"
["clean"]
["shadow" "watch" "browser-test" "karma-test"]]
"ci" ["do"
["clean"]
["shadow" "compile" "karma-test"]
["shell" "karma" "start" "--single-run" "--reporters" "junit,dots"]]}
:deploy-repositories [["clojars" {:sign-releases false
:url "https://clojars.org/repo"
:username :env/CLOJARS_USERNAME
:password :env/CLOJARS_TOKEN}]]
:release-tasks [["deploy" "clojars"]]
:clean-targets [:target-path
"shadow-cljs.edn"
"package.json"
"package-lock.json"
"resources/public/js/test"])