From f3ee83e728c345a46eae2096b5bf1614a4c15bcf Mon Sep 17 00:00:00 2001 From: gered Date: Tue, 31 May 2016 16:04:59 -0400 Subject: [PATCH] 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) --- clj-browserchannel/project.clj | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/clj-browserchannel/project.clj b/clj-browserchannel/project.clj index b0a105d..b6fe765 100644 --- a/clj-browserchannel/project.clj +++ b/clj-browserchannel/project.clj @@ -5,6 +5,8 @@ :dependencies [[org.clojure/tools.logging "0.3.1"] [ring/ring-core "1.4.0"] [cheshire "5.6.1"]] + + :plugins [[lein-cljsbuild "1.1.3"]] :profiles {:provided {:dependencies @@ -15,4 +17,8 @@ {:dependencies [[pjstadig/humane-test-output "0.8.0"] [ring/ring-mock "0.3.0"]] :injections [(require 'pjstadig.humane-test-output) - (pjstadig.humane-test-output/activate!)]}}) + (pjstadig.humane-test-output/activate!)]}} + + :cljsbuild {:builds + {:main + {:source-paths ["src"]}}})