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

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/node_modules/npmlog/log.js')
-rw-r--r--deps/npm/node_modules/npmlog/log.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/deps/npm/node_modules/npmlog/log.js b/deps/npm/node_modules/npmlog/log.js
index d70004d2ec2..8d781f17319 100644
--- a/deps/npm/node_modules/npmlog/log.js
+++ b/deps/npm/node_modules/npmlog/log.js
@@ -100,9 +100,10 @@ log.clearProgress = function () {
this.gauge.hide()
}
-log.showProgress = function (name) {
+log.showProgress = function (name, completed) {
if (!this.progressEnabled) return
- this.gauge.show(name, this.tracker.completed())
+ if (completed == null) completed = this.tracker.completed()
+ this.gauge.show(name, completed)
}.bind(log) // bind for use in tracker's on-change listener
// temporarily stop emitting, but don't drop