aboutsummaryrefslogtreecommitdiff
path: root/lux-lein
diff options
context:
space:
mode:
authorEduardo Julian2019-03-13 20:14:18 -0400
committerEduardo Julian2019-03-13 20:14:18 -0400
commit810c2c9f524603c161f265e4ed17c6556bdef959 (patch)
tree40e25bc7adbcd0e92ec603acc7f4cb1d69b7bb24 /lux-lein
parent2a66e82a230e54fd07fd911bd4b220d54f0f0401 (diff)
Now showing how long it takes to package a build.
Diffstat (limited to 'lux-lein')
-rw-r--r--lux-lein/src/leiningen/lux/packager.clj7
1 files changed, 4 insertions, 3 deletions
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)))