From becf6c4f4767d96a126f867c4eae8b1c431793c8 Mon Sep 17 00:00:00 2001 From: Slava Kim Date: Mon, 20 Oct 2014 15:31:51 -0700 Subject: [PATCH] Tweak the output of `meteor remove` --- tools/commands-packages.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/commands-packages.js b/tools/commands-packages.js index 51a33582e2..2595366c2d 100644 --- a/tools/commands-packages.js +++ b/tools/commands-packages.js @@ -2344,8 +2344,10 @@ main.registerCommand({ // Log that we removed the constraints. It is possible that there are // constraints that we officially removed that the project still 'depends' on, // which is why there are these two tiers of error messages. + if (! _.isEmpty(packagesToRemove)) + Console.info(""); _.each(packagesToRemove, function (packageName) { - Console.info("Removed top-level dependency on " + packageName + "."); + Console.info(packageName + ": removed dependency"); }); return 0;