-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathproject.clj
44 lines (38 loc) · 2.09 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
(defproject com.wallbrew/brew-bot "3.1.0"
:description "A quick, dirty way to get randomized beer recipes"
:url "https://github.com/Wall-Brew-Co/brew-bot"
:license {:name "MIT"
:url "https://opensource.org/licenses/MIT"}
:dependencies [[cljx-sampling "0.1.0"]
[com.wallbrew/brewtility "1.2.0"]
[com.wallbrew/common-beer-data "1.1.0"]
[com.wallbrew/common-beer-format "2.1.0"]
[nnichols "1.1.0"]
[org.clojure/clojure "1.11.1"]
[org.clojure/clojurescript "1.11.60" :scope "provided"]]
:plugins [[lein-cljsbuild "1.1.8"]]
:aliases {"test-build" ["do" "clean" ["cljsbuild" "once" "test"] ["doo" "once"] ["test"]]}
:profiles {:uberjar {:aot :all}
:dev {:dependencies [[doo "0.1.11"]]
:plugins [[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"]}}}}})