2020-03-29 07:33:54 -05:00
|
|
|
{:deps {:aliases [:dev]}
|
|
|
|
:dev-http {3449 "classpath:public"}
|
|
|
|
:http {:port 3448}
|
|
|
|
:nrepl {:port 3447}
|
|
|
|
|
|
|
|
:builds
|
|
|
|
{:main
|
|
|
|
{:target :browser
|
|
|
|
:output-dir "resources/public/js/"
|
|
|
|
:asset-path "/js"
|
2020-04-16 06:49:59 -05:00
|
|
|
:devtools {:browser-inject :main}
|
2020-04-17 08:03:34 -05:00
|
|
|
:build-options {:manifest-name "manifest.json"}
|
2020-04-16 06:49:59 -05:00
|
|
|
:modules
|
|
|
|
{:shared {:entries []}
|
|
|
|
:main {:entries [uxbox.main]
|
2020-04-18 13:34:34 -05:00
|
|
|
:depends-on #{:shared}
|
|
|
|
:init-fn uxbox.main/init}
|
2020-04-16 06:49:59 -05:00
|
|
|
:worker {:entries [uxbox.worker]
|
|
|
|
:web-worker true
|
|
|
|
:depends-on #{:shared}}}
|
2020-04-02 16:56:26 -05:00
|
|
|
:compiler-options
|
|
|
|
{:output-feature-set :es8
|
|
|
|
:output-wrapper false}
|
2020-05-05 05:34:51 -05:00
|
|
|
|
2020-04-02 16:56:26 -05:00
|
|
|
:release
|
2020-04-18 13:34:34 -05:00
|
|
|
{:compiler-options
|
2020-04-02 16:56:26 -05:00
|
|
|
{:fn-invoke-direct true
|
|
|
|
:source-map true
|
2020-05-05 05:34:51 -05:00
|
|
|
;; :pseudo-names true
|
|
|
|
;; :pretty-print true
|
2020-04-08 09:54:44 -05:00
|
|
|
:anon-fn-naming-policy :off
|
2020-04-30 03:08:36 -05:00
|
|
|
:source-map-detail-level :all}}}
|
|
|
|
|
|
|
|
:tests
|
|
|
|
{:target :node-test
|
|
|
|
:output-to "target/tests.js"
|
|
|
|
:ns-regexp "^uxbox.test-"
|
|
|
|
:autorun true}}}
|
|
|
|
|
|
|
|
|