Update lockfile (#3193)

This commit is contained in:
Francisco Giordano
2022-02-15 23:03:33 -03:00
committed by GitHub
parent 58f635312a
commit 6fec54f17f
4 changed files with 1252 additions and 5726 deletions

View File

@ -26,7 +26,7 @@ for (const artifact of artifacts) {
graph.nodes().forEach((x, i, nodes) => nodes
.slice(i + 1)
.filter(y => graph.hasEdge(x, y) && graph.hasEdge(y, x))
.map(y => {
.forEach(y => {
console.log(`Conflict between ${names[x]} and ${names[y]} detected in the following dependency chains:`);
linearized
.filter(chain => chain.includes(parseInt(x)) && chain.includes(parseInt(y)))