From 3c9a589b004fa828a304abaf52d1d781710e1143 Mon Sep 17 00:00:00 2001 From: kumavis Date: Tue, 2 Mar 2021 10:53:36 +0800 Subject: feat/explain: show when an edge is a bundled edge PR-URL: https://github.com/npm/cli/pull/2807 Credit: @kumavis Close: #2807 Reviewed-by: @ruyadorno --- lib/utils/explain-dep.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lib/utils') diff --git a/lib/utils/explain-dep.js b/lib/utils/explain-dep.js index 213493c65..c01bc780b 100644 --- a/lib/utils/explain-dep.js +++ b/lib/utils/explain-dep.js @@ -86,9 +86,10 @@ const explainDependents = ({ name, dependents }, depth, color) => { return str.split('\n').join('\n ') } -const explainEdge = ({ name, type, from, spec }, depth, color) => { +const explainEdge = ({ name, type, bundled, from, spec }, depth, color) => { const { bold } = color ? chalk : nocolor return (type === 'prod' ? '' : `${colorType(type, color)} `) + + (bundled ? `${colorType('bundled', color)} ` : '') + `${bold(name)}@"${bold(spec)}" from ` + explainFrom(from, depth, color) } -- cgit v1.2.3