diff --git a/project.clj b/project.clj index ded8b50b..bea32c45 100644 --- a/project.clj +++ b/project.clj @@ -1,7 +1,7 @@ (defproject com.taoensso/timbre "6.2.2" :author "Peter Taoussanis " :description "Simple structured logging for Clojure/Script applications" - :url "https://github.com/ptaoussanis/timbre" + :url "https://github.com/taoensso/timbre" :license {:name "Eclipse Public License - v 1.0" @@ -97,12 +97,12 @@ :optimizations :simple}}]} :aliases - {"start-dev" ["with-profile" "+dev" "repl" ":headless"] - "build-once" ["do" ["clean"] "cljsbuild" "once"] + {"start-dev" ["with-profile" "+dev" "repl" ":headless"] + "build-once" ["do" ["clean"] ["cljsbuild" "once"]] ;; "deploy-lib" ["do" ["build-once"] ["deploy" "clojars"] ["install"]] - "deploy-lib" ["with-profile" "+deploy" - "do" ["build-once"] ["deploy" "clojars"] ["install"]] + "deploy-lib" ["with-profile" "+deploy" "do" + ["build-once"] ["deploy" "clojars"] ["install"]] "test-clj" ["with-profile" "+c1.11:+c1.10:+c1.9" "test"] "test-cljs" ["with-profile" "+test" "cljsbuild" "test"] - "test-all" ["do" ["clean"] "test-clj," "test-cljs"]}) + "test-all" ["do" ["clean"] ["test-clj"] ["test-cljs"]]})