add mostly empty lein-cljsbuild config
this is pretty much only being added to make it easier to develop this library using leiningen checkouts (which is what i normally do to test changes as i work in a test webapp)
This commit is contained in:
parent
34fef48582
commit
f3ee83e728
|
@ -6,6 +6,8 @@
|
||||||
[ring/ring-core "1.4.0"]
|
[ring/ring-core "1.4.0"]
|
||||||
[cheshire "5.6.1"]]
|
[cheshire "5.6.1"]]
|
||||||
|
|
||||||
|
:plugins [[lein-cljsbuild "1.1.3"]]
|
||||||
|
|
||||||
:profiles {:provided
|
:profiles {:provided
|
||||||
{:dependencies
|
{:dependencies
|
||||||
[[org.clojure/clojure "1.8.0"]
|
[[org.clojure/clojure "1.8.0"]
|
||||||
|
@ -15,4 +17,8 @@
|
||||||
{:dependencies [[pjstadig/humane-test-output "0.8.0"]
|
{:dependencies [[pjstadig/humane-test-output "0.8.0"]
|
||||||
[ring/ring-mock "0.3.0"]]
|
[ring/ring-mock "0.3.0"]]
|
||||||
:injections [(require 'pjstadig.humane-test-output)
|
:injections [(require 'pjstadig.humane-test-output)
|
||||||
(pjstadig.humane-test-output/activate!)]}})
|
(pjstadig.humane-test-output/activate!)]}}
|
||||||
|
|
||||||
|
:cljsbuild {:builds
|
||||||
|
{:main
|
||||||
|
{:source-paths ["src"]}}})
|
||||||
|
|
Reference in a new issue