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
path: root/lib/ls.js
diff options
context:
space:
mode:
authorGar <gar+gh@danger.computer>2021-03-01 06:00:58 +0300
committerGar <gar+gh@danger.computer>2021-03-09 22:10:06 +0300
commit85a8694dd9b4a924a474ba75261914511a216868 (patch)
tree1102b6d0df598a59bd85998a2f05f155ba6b1800 /lib/ls.js
parent7ff152d94d2dbeaacbfc9824d8b1bb6ff96bf0f2 (diff)
fix(npm.output): make output go through npm.output
All output that anything wants to make now goes through `npm.output()`. This is an incremental change getting us closer to where we want to be with testing. PR-URL: https://github.com/npm/cli/pull/2795 Credit: @wraithgar Close: #2795 Reviewed-by: @ruyadorno, @isaacs
Diffstat (limited to 'lib/ls.js')
-rw-r--r--lib/ls.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/ls.js b/lib/ls.js
index 359fe21e6..b94684401 100644
--- a/lib/ls.js
+++ b/lib/ls.js
@@ -9,7 +9,6 @@ const npa = require('npm-package-arg')
const usageUtil = require('./utils/usage.js')
const completion = require('./utils/completion/installed-deep.js')
-const output = require('./utils/output.js')
const _depth = Symbol('depth')
const _dedupe = Symbol('dedupe')
@@ -147,7 +146,7 @@ class LS {
const [rootError] = tree.errors.filter(e =>
e.code === 'EJSONPARSE' && e.path === resolve(path, 'package.json'))
- output(
+ this.npm.output(
json
? jsonOutput({ path, problems, result, rootError, seenItems })
: parseable