mirror of https://github.com/status-im/reagent.git
29 lines
964 B
Clojure
29 lines
964 B
Clojure
(defproject reagent/react-context-example "0.1.0"
|
|
:dependencies [[org.clojure/clojure "1.10.1"]
|
|
[org.clojure/clojurescript "1.10.597"]
|
|
[reagent "0.10.0"]
|
|
[figwheel "0.5.19"]
|
|
[cljsjs/react-sortable-hoc "1.11.0-0"]]
|
|
|
|
:plugins [[lein-cljsbuild "1.1.7"]
|
|
[lein-figwheel "0.5.19"]]
|
|
|
|
:figwheel {:repl false
|
|
:http-server-root "public"}
|
|
|
|
:profiles {:dev {:resource-paths ["target/cljsbuild/client" "target/cljsbuild/client-npm"]}}
|
|
|
|
:cljsbuild
|
|
{:builds
|
|
{:client
|
|
{:source-paths ["src"]
|
|
:figwheel true
|
|
:compiler {:parallel-build true
|
|
:source-map true
|
|
:optimizations :none
|
|
:main "example.core"
|
|
:output-dir "target/cljsbuild/client/public/js/out"
|
|
:output-to "target/cljsbuild/client/public/js/main.js"
|
|
:asset-path "js/out"
|
|
:npm-deps false}}}})
|