File tree Expand file tree Collapse file tree 3 files changed +0
-17
lines changed
lib/third-party/arborist/lib Expand file tree Collapse file tree 3 files changed +0
-17
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,6 @@ import util from "node:util";
3434import nameFromFolder from "@npmcli/name-from-folder" ;
3535import getPaths from "bin-links" ;
3636import npa from "npm-package-arg" ;
37- import log from "proc-log" ;
3837import rpj from "read-package-json-fast" ;
3938import semver from "semver" ;
4039import { walkUp } from "walk-up-path" ;
@@ -1444,8 +1443,6 @@ class Node {
14441443 }
14451444 return false ;
14461445 }
1447- // This is an error condition. We can only get here if the new override set is in conflict with the existing.
1448- log . silly ( "Conflicting override sets" , this . name ) ;
14491446 }
14501447
14511448 deleteEdgeIn ( edge ) {
Original file line number Diff line number Diff line change 11import npa from "npm-package-arg" ;
2- import log from "proc-log" ;
32import semver from "semver" ;
43
54class OverrideSet {
@@ -206,9 +205,6 @@ class OverrideSet {
206205 return first ;
207206 }
208207 }
209-
210- // The override sets are incomparable. Neither one contains the other.
211- log . silly ( "Conflicting override sets" , first , second ) ;
212208 }
213209
214210 static doOverrideSetsConflict ( first , second ) {
Original file line number Diff line number Diff line change 88// a result.
99
1010import localeCompare from "@isaacs/string-locale-compare" ;
11- import { redact } from "@npmcli/redact" ;
1211import log from "proc-log" ;
1312
1413import CanPlaceDep , { CONFLICT , KEEP } from "./can-place-dep.js" ;
@@ -183,15 +182,6 @@ class PlaceDep {
183182
184183 const { target } = this . canPlace ;
185184
186- log . silly (
187- "placeDep" ,
188- target . location || "ROOT" ,
189- `${ this . dep . name } @${ this . dep . version } ` ,
190- this . canPlace . description ,
191- `for: ${ this . edge . from . package . _id || this . edge . from . location } ` ,
192- `want: ${ redact ( this . edge . spec || "*" ) } ` ,
193- ) ;
194-
195185 const placementType =
196186 this . canPlace . canPlace === CONFLICT
197187 ? this . canPlace . canPlaceSelf
You can’t perform that action at this time.
0 commit comments