@snyk/dep-graph
Advanced tools
Comparing version 1.13.0 to 1.13.1
@@ -92,3 +92,7 @@ "use strict"; | ||
var id = _a[_i]; | ||
pathsToRoot.push.apply(pathsToRoot, this.pathsFromNodeToRoot(id)); | ||
var paths = this.pathsFromNodeToRoot(id); | ||
for (var _b = 0, paths_1 = paths; _b < paths_1.length; _b++) { | ||
var path = paths_1[_b]; | ||
pathsToRoot.push(path); | ||
} | ||
} | ||
@@ -221,3 +225,6 @@ // note: sorting to get shorter paths first - | ||
}); | ||
allPaths.push.apply(allPaths, out); | ||
for (var _i = 0, out_1 = out; _i < out_1.length; _i++) { | ||
var path = out_1[_i]; | ||
allPaths.push(path); | ||
} | ||
}); | ||
@@ -224,0 +231,0 @@ return allPaths; |
@@ -50,3 +50,3 @@ { | ||
}, | ||
"version": "1.13.0" | ||
"version": "1.13.1" | ||
} |
@@ -180,3 +180,3 @@ ![Snyk logo](https://snyk.io/style/asset/logo/snyk-print.svg) | ||
version: string; | ||
dependencies: { | ||
dependencies?: { | ||
[depName: string]: DepTree | ||
@@ -183,0 +183,0 @@ }; |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
73013
1003