24 lines
566 B
Clojure
24 lines
566 B
Clojure
;; shadow-cljs configuration
|
|
{:source-paths
|
|
["src" ]
|
|
|
|
:dependencies
|
|
[[reagent/reagent "2.0.1"]
|
|
[applied-science/js-interop "0.4.2"]
|
|
|
|
[binaryage/devtools "1.0.7"] ; loaded automatically, see https://shadow-cljs.github.io/docs/UsersGuide.html#_preloads
|
|
]
|
|
|
|
:dev-http {8080 "public"}
|
|
|
|
:builds
|
|
{:frontend
|
|
{:target :browser
|
|
:modules {:main {:init-fn computersandblues.lodestone.app/init}}
|
|
:js-options {:entry-keys ["module" "browser" "main"]}}
|
|
|
|
:test
|
|
{:target :node-test
|
|
:output-to "public/js/tests.js"
|
|
:ns-regexp "-test$"
|
|
:autorun true}}}
|