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:
Diffstat (limited to 'lib/npm.js')
-rw-r--r--lib/npm.js3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/npm.js b/lib/npm.js
index d530ea8d7..67cc79876 100644
--- a/lib/npm.js
+++ b/lib/npm.js
@@ -157,8 +157,6 @@ fullList = npm.fullList = fullList.filter(function (c) {
return littleGuys.indexOf(c) === -1
})
-showProgress = log.progressEnabled
-
Object.keys(abbrevs).concat(plumbing).forEach(function addCommand (c) {
Object.defineProperty(npm.commands, c, { get : function () {
if (!loaded) throw new Error(
@@ -178,7 +176,6 @@ Object.keys(abbrevs).concat(plumbing).forEach(function addCommand (c) {
var args = Array.prototype.slice.call(arguments, 0)
if (typeof args[args.length - 1] !== "function") {
args.push(defaultCb)
- log.enableProgress()
}
if (args.length === 1) args.unshift([])