Tweak the output of meteor remove

This commit is contained in:
Slava Kim
2014-10-20 15:31:51 -07:00
committed by Emily Stark
parent 1bb897bf4c
commit becf6c4f47

View File

@@ -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;