diff options
author | Eduardo Julian | 2019-03-13 20:14:18 -0400 |
---|---|---|
committer | Eduardo Julian | 2019-03-13 20:14:18 -0400 |
commit | 810c2c9f524603c161f265e4ed17c6556bdef959 (patch) | |
tree | 40e25bc7adbcd0e92ec603acc7f4cb1d69b7bb24 | |
parent | 2a66e82a230e54fd07fd911bd4b220d54f0f0401 (diff) |
Now showing how long it takes to package a build.
-rw-r--r-- | lux-lein/src/leiningen/lux/packager.clj | 7 |
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))) |