2021-04-24 11:49:58 +02:00
|
|
|
{:http {:port 3448}
|
2020-03-29 14:33:54 +02:00
|
|
|
:nrepl {:port 3447}
|
2021-05-25 14:03:53 +02:00
|
|
|
:jvm-opts ["-Xmx600m" "-Xms50m"
|
|
|
|
"-XX:+UseZGC" "-XX:ConcGCThreads=1"
|
|
|
|
"-XX:-OmitStackTraceInFastThrow"]
|
2021-04-26 11:19:50 +02:00
|
|
|
:dev-http {8888 "classpath:public"}
|
2020-03-29 14:33:54 +02:00
|
|
|
|
2021-05-13 08:49:05 +02:00
|
|
|
:source-paths ["src", "vendor", "resources", "../common", "tests", "dev"]
|
2021-04-24 11:49:58 +02:00
|
|
|
:dependencies
|
|
|
|
[[binaryage/devtools "RELEASE"]
|
|
|
|
|
|
|
|
[environ/environ "1.2.0"]
|
2021-05-04 15:15:42 +02:00
|
|
|
[metosin/reitit-core "0.5.13"]
|
2021-04-24 11:49:58 +02:00
|
|
|
[expound/expound "0.8.9"]
|
|
|
|
|
|
|
|
[danlentz/clj-uuid "0.1.9"]
|
|
|
|
[frankiesardo/linked "1.3.0"]
|
|
|
|
|
2021-05-04 15:15:42 +02:00
|
|
|
[funcool/beicon "2021.04.29-0"]
|
2021-05-09 12:28:52 +02:00
|
|
|
[funcool/cuerdas "2021.05.09-0"]
|
2021-04-24 11:49:58 +02:00
|
|
|
[funcool/okulary "2020.04.14-0"]
|
2021-05-04 15:15:42 +02:00
|
|
|
[funcool/potok "4.0.0"]
|
2021-04-24 11:49:58 +02:00
|
|
|
[funcool/promesa "6.0.0"]
|
2021-05-13 08:49:05 +02:00
|
|
|
[funcool/rumext "2021.05.12-1"]
|
2021-05-20 10:56:58 +02:00
|
|
|
[funcool/tubax "2021.05.20-0"]
|
2021-04-24 11:49:58 +02:00
|
|
|
|
|
|
|
[lambdaisland/uri "1.4.54"
|
|
|
|
:exclusions [org.clojure/data.json]]
|
|
|
|
|
|
|
|
[instaparse/instaparse "1.4.10"]]
|
|
|
|
|
2020-03-29 14:33:54 +02:00
|
|
|
:builds
|
|
|
|
{:main
|
|
|
|
{:target :browser
|
|
|
|
:output-dir "resources/public/js/"
|
|
|
|
:asset-path "/js"
|
2020-06-05 14:14:49 +02:00
|
|
|
:devtools {:browser-inject :main
|
|
|
|
:watch-dir "resources/public"}
|
2020-04-17 15:03:34 +02:00
|
|
|
:build-options {:manifest-name "manifest.json"}
|
2020-06-02 16:14:23 +02:00
|
|
|
|
2020-04-16 13:49:59 +02:00
|
|
|
:modules
|
|
|
|
{:shared {:entries []}
|
2020-08-18 19:26:37 +02:00
|
|
|
:main {:entries [app.main]
|
2020-04-18 20:34:34 +02:00
|
|
|
:depends-on #{:shared}
|
2020-08-18 19:26:37 +02:00
|
|
|
:init-fn app.main/init}
|
|
|
|
:worker {:entries [app.worker]
|
2020-04-16 13:49:59 +02:00
|
|
|
:web-worker true
|
|
|
|
:depends-on #{:shared}}}
|
2021-05-04 15:15:42 +02:00
|
|
|
|
2020-04-02 23:56:26 +02:00
|
|
|
:compiler-options
|
|
|
|
{:output-feature-set :es8
|
2021-05-04 15:15:42 +02:00
|
|
|
:output-wrapper false
|
|
|
|
:warnings {:fn-deprecated false}}
|
2020-05-05 12:34:51 +02:00
|
|
|
|
2020-04-02 23:56:26 +02:00
|
|
|
:release
|
2020-04-18 20:34:34 +02:00
|
|
|
{:compiler-options
|
2020-04-02 23:56:26 +02:00
|
|
|
{:fn-invoke-direct true
|
|
|
|
:source-map true
|
2020-12-03 10:31:07 +01:00
|
|
|
:elide-asserts true
|
2020-04-08 16:54:44 +02:00
|
|
|
:anon-fn-naming-policy :off
|
2020-04-30 10:08:36 +02:00
|
|
|
:source-map-detail-level :all}}}
|
|
|
|
|
|
|
|
:tests
|
|
|
|
{:target :node-test
|
|
|
|
:output-to "target/tests.js"
|
2020-08-18 19:26:37 +02:00
|
|
|
:ns-regexp "^app.test-"
|
2021-05-07 16:17:38 +02:00
|
|
|
:autorun true
|
2020-04-30 10:08:36 +02:00
|
|
|
|
2021-05-07 16:17:38 +02:00
|
|
|
:compiler-options
|
|
|
|
{:output-feature-set :es8
|
|
|
|
:output-wrapper false
|
|
|
|
:warnings {:fn-deprecated false}}}}}
|
2020-04-30 10:08:36 +02:00
|
|
|
|