diff --git a/README.md b/README.md index 0c327dc..70b31f1 100644 --- a/README.md +++ b/README.md @@ -13,8 +13,8 @@ You can include this library in your project dependencies using the version numb ## Development * Install [the Clojure CLI tool](https://clojure.org/guides/getting_started#_clojure_installer_and_cli_tools) -* To develop with figwheel: `clj -A:dev dev.clj` -* To install the release version: `clj -A:prod prod.clj install` +* To develop with figwheel: `clj -A:dev` +* To install the release version: `clj -A:prod install` ## Licensing diff --git a/deps.edn b/deps.edn index 2acd7e6..577b3d9 100644 --- a/deps.edn +++ b/deps.edn @@ -4,5 +4,7 @@ dynadoc {:mvn/version "RELEASE"} com.bhauman/figwheel-main {:mvn/version "0.2.0"} orchestra {:mvn/version "2018.12.06-2"}} - :extra-paths ["dev-resources"]} - :prod {:extra-deps {leiningen {:mvn/version "2.9.0"}}}}} + :extra-paths ["dev-resources"] + :main-opts ["dev.clj"]} + :prod {:extra-deps {leiningen {:mvn/version "2.9.0"}} + :main-opts ["prod.clj"]}}}