From 810c2c9f524603c161f265e4ed17c6556bdef959 Mon Sep 17 00:00:00 2001 From: Eduardo Julian Date: Wed, 13 Mar 2019 20:14:18 -0400 Subject: Now showing how long it takes to package a build. --- lux-lein/src/leiningen/lux/packager.clj | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'lux-lein') diff --git a/lux-lein/src/leiningen/lux/packager.clj b/lux-lein/src/leiningen/lux/packager.clj index 2c23c5cc3..28c4f5497 100644 --- a/lux-lein/src/leiningen/lux/packager.clj +++ b/lux-lein/src/leiningen/lux/packager.clj @@ -226,6 +226,7 @@ (defn package "(-> Text Text (List Text) Null)" [project platform module resources-dirs] - (case platform - "jvm" (package-jvm project module resources-dirs) - "js" nil)) + (time + (case platform + "jvm" (package-jvm project module resources-dirs) + "js" nil))) -- cgit v1.2.3