Files
meteor/tools/console
Ben Newman 6b3cc2e94f Avoid displaying package stats errors in headless mode.
Console.isInteractive() will be false during our Circle CI test runs,
since we set the METEOR_HEADLESS environment variable, so this change
should help prevent spurious test failures like these:
https://circleci.com/gh/meteor/meteor/15305.
2018-04-02 12:32:50 -04:00
..
2015-08-06 17:01:29 -07:00

This folder contains libs for printing output in response to CLI commands.

progress.js defines the lib for printing a progress-bar, so the long operations don't look like hanging.

console.js exposes the Console singleton that should be used through-out the tool to print messages with the right level of importance. It also knows how to correctly repaint the progress-bar, so the two don't conflict.