Update dist

This commit is contained in:
Alex Opie
2025-10-24 21:28:27 +13:00
parent ec00348b72
commit d434719693
2 changed files with 4 additions and 2 deletions
Generated Vendored
+3 -1
View File
@@ -36129,7 +36129,9 @@ class ComponentDetection {
pkg.locationsFoundAt.forEach((location) => {
var _a, _b;
// Use the normalized path (remove leading slash if present)
const normalizedLocation = location.startsWith('/') ? location.substring(1) : location;
let normalizedLocation = location.startsWith('/') ? location.substring(1) : location;
// Unescape the path, as upstream ComponentDetection emits locationsFoundAt in URL-encoded form
normalizedLocation = decodeURIComponent(normalizedLocation);
if (!manifests.find((manifest) => manifest.name == normalizedLocation)) {
const manifest = new dependency_submission_toolkit_1.Manifest(normalizedLocation, normalizedLocation);
manifests.push(manifest);
Generated Vendored
+1 -1
View File
File diff suppressed because one or more lines are too long