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:
authorAaron Tribou <aaron.tribou@gmail.com>2016-05-26 01:46:48 +0300
committerRebecca Turner <me@re-becca.org>2016-06-17 00:01:47 +0300
commit21c60e9bb56d47da17b79681f2142b3dcf4c804b (patch)
treecafc6363acaaf6bd99ed7bca2d9af1c9fb6447b2 /lib/outdated.js
parente8c80f20bfd5d1618e85dbab41660d6f3e5ce405 (diff)
outdated: Stop colorizing the Location and Package Type columns.
Previously they were colored dark gray, which was hard to read for some users. PR-URL: https://github.com/npm/npm/pull/12843 Credit: @tribou
Diffstat (limited to 'lib/outdated.js')
-rw-r--r--lib/outdated.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/outdated.js b/lib/outdated.js
index bc9646131..474e3d9a1 100644
--- a/lib/outdated.js
+++ b/lib/outdated.js
@@ -142,8 +142,6 @@ function makePretty (p) {
columns[0] = color[has === want || want === 'linked' ? 'yellow' : 'red'](columns[0]) // dep
columns[2] = color.green(columns[2]) // want
columns[3] = color.magenta(columns[3]) // latest
- columns[4] = color.brightBlack(columns[4]) // dir
- if (long) columns[5] = color.brightBlack(columns[5]) // type
}
return columns