-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
project.clj
82 lines (67 loc) · 3.61 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
81
82
(defproject day8.re-frame/async-flow-fx "lein-git-inject/version"
:description "A re-frame effects handler for coordinating the kind of async control flow which often happens on app startup."
:url "https://github.com/day8/re-frame-async-flow-fx.git"
:license {:name "MIT"}
:min-lein-version "2.9.0"
: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.23.3" :scope "provided"]
[re-frame "1.3.0" :scope "provided"]
[day8.re-frame/forward-events-fx "0.0.6"]]
:plugins [[com.github.liquidz/antq "RELEASE"]
[day8/lein-git-inject "0.0.15"]
[lein-pprint "1.3.2"]
[lein-shadow "0.4.1"]
[lein-shell "0.5.0"]]
:middleware [leiningen.git-inject/middleware]
:antq {}
:profiles {:debug {:debug true}
:dev {:dependencies [[day8.re-frame/test "0.1.5"]
[binaryage/devtools "1.0.7"]]}}
:clean-targets [:target-path
"resources/public/js/test"
"shadow-cljs.edn"
"node_modules"]
:resource-paths ["run/resources"]
:jvm-opts ["-Xmx1g"]
:source-paths ["src"]
:test-paths ["test"]
:shadow-cljs {:builds {:browser-test
{:target :browser-test
:ns-regexp "-test$"
:test-dir "resources/public/js/test"
:devtools {:http-root "resources/public/js/test"
:http-port 8290}}
:karma-test
{:target :karma
:ns-regexp "-test$"
:output-to "target/karma-test.js"}}}
:deploy-repositories [["clojars" {:sign-releases false
:url "https://clojars.org/repo"
:username :env/CLOJARS_USERNAME
:password :env/CLOJARS_TOKEN}]]
:release-tasks [["deploy" "clojars"]]
:shell {:commands {"karma" {:windows ["cmd" "/c" "karma"]
:default-command "karma"}
"npm" {:exit-code :ignore
:windows ["cmd" "/c" "npm"]
:default-command "npm"}
"open" {:windows ["cmd" "/c" "start"]
:macosx "open"
:linux "xdg-open"}}}
:aliases {"watch" ["do"
["clean"]
["shadow" "watch" "browser-test" "karma-test"]]
"outdated" ["with-profile" "dev,test" "do"
["shell" "echo" "Upgrade the following dependencies with 'npm install name@ver --save':"]
["shell" "npm" "outdated"]
["shell" "echo" "\n\n"]
["shell" "echo" "Upgrade the following dependencies by editing project.clj:"]
["antq"]]
"ci" ["do"
["clean"]
["shadow" "compile" "karma-test"]
["shell" "karma" "start" "--single-run" "--reporters" "junit,dots"]]})