Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRebecca Turner <me@re-becca.org>2015-04-20 11:34:44 +0300
committerRebecca Turner <me@re-becca.org>2015-06-26 03:26:52 +0300
commit24a149faed33dc1faeff78877fb9f95bc5c6a9e3 (patch)
treec9595155c2e427dedb6c507770734cd53d76d63b /bin/npm-cli.js
parentf9b6abf0262126ff35a81b3ad8ca71e63d1935b5 (diff)
Stop stray progressbars from appearing when logging is used in non-progress commands
Diffstat (limited to 'bin/npm-cli.js')
-rwxr-xr-xbin/npm-cli.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/npm-cli.js b/bin/npm-cli.js
index b01e8477e..82a75be52 100755
--- a/bin/npm-cli.js
+++ b/bin/npm-cli.js
@@ -22,6 +22,7 @@ log.enableProgress()
log.info("it worked if it ends with", "ok")
var path = require("path")
+ , log = require("npmlog")
, npm = require("../lib/npm.js")
, npmconf = require("../lib/config/core.js")
, errorHandler = require("../lib/utils/error-handler.js")
@@ -71,6 +72,7 @@ if (conf.usage && npm.command !== "help") {
conf._exit = true
npm.load(conf, function (er) {
if (er) return errorHandler(er)
+ log.enableProgress()
npm.commands[npm.command](npm.argv, errorHandler)
})