-
Notifications
You must be signed in to change notification settings - Fork 4
/
project.clj
58 lines (51 loc) · 2.93 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
(defproject com.wallbrew/brew-bot "3.4.0"
:description "A library to generate randomized beer recipes."
:url "https://github.com/Wall-Brew-Co/brew-bot"
:license {:name "MIT"
:url "https://opensource.org/licenses/MIT"
:distribution :repo
:comments "Same-as all Wall-Brew projects"}
:scm {:name "git"
:url "https://github.com/Wall-Brew-Co/brew-bot"}
:pom-addition [:organization
[:name "Wall Brew Co."]
[:url "https://wallbrew.com"]]
:dependencies [[com.wallbrew/brewtility "2.2.1"]
[com.wallbrew/common-beer-data "1.6.0"]
[com.wallbrew/common-beer-format "2.6.0"]
[com.wallbrew/spoon "1.4.0"]
[org.clojure/clojure "1.12.0"]
[org.clojure/clojurescript "1.11.132" :scope "provided"]]
:plugins [[com.github.clj-kondo/lein-clj-kondo "2024.09.27"]
[com.wallbrew/lein-sealog "1.8.0"]
[com.wallbrew/bouncer "1.1.1"]
[lein-cljsbuild/lein-cljsbuild "1.1.8"]
[mvxcvi/cljstyle "0.16.630"]]
:deploy-repositories [["clojars" {:url "https://clojars.org/repo"
:username :env/clojars_user
:password :env/clojars_pass
:sign-releases false}]]
:deploy-branches ["master"]
:aliases {"test-build" ["do" "clean" ["cljsbuild" "once" "test"] ["doo" "once"] ["test"]]}
:profiles {:uberjar {:aot :all}
:dev {:dependencies [[doo/doo "0.1.11"]]
:plugins [[lein-doo/lein-doo "0.1.11"]]}}
:min-lein-version "2.5.3"
:cljsbuild {:builds [{:id "test"
:source-paths ["src" "test"]
:compiler {:main "brew-bot.runner"
:output-to "target/test/app.js"
:output-dir "target/test/js/compiled/out"
:optimizations :none
:parallel-build true}}]}
:doo {:build "test"
:alias {:default [:chrome-headless-no-sandbox]}
:paths {:karma "./node_modules/karma/bin/karma"}
:karma {:launchers {:chrome-headless-no-sandbox {:plugin "karma-chrome-launcher"
:name "ChromeHeadlessNoSandbox"}}
:config {"captureTimeout" 210000
"browserDisconnectTolerance" 3
"browserDisconnectTimeout" 210000
"browserNoActivityTimeout" 210000
"customLaunchers" {"ChromeHeadlessNoSandbox" {"base" "ChromeHeadless"
"flags" ["--no-sandbox" "--disable-dev-shm-usage"]}}}}})