@eurekadevsecops/radar 1.7.0 → 1.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -5,14 +5,18 @@ module.exports = (sarif, dir, git, root) => {
|
|
|
5
5
|
|
|
6
6
|
// Record the source repo location and the relative target subfolder within the repo.
|
|
7
7
|
run.originalUriBaseIds = {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
8
|
+
SOURCE: {
|
|
9
|
+
uri: git.repo.url.https,
|
|
10
|
+
description: {
|
|
11
|
+
text: "Source origin for the target being scanned (ie. git repo URL)."
|
|
12
|
+
}
|
|
11
13
|
},
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
14
|
+
TARGET: {
|
|
15
|
+
uri: `${path.relative(root, dir)}`,
|
|
16
|
+
uriBaseId: "SOURCE",
|
|
17
|
+
description: {
|
|
18
|
+
text: "Scan target (subfolder) within the source repo or folder."
|
|
19
|
+
}
|
|
16
20
|
}
|
|
17
21
|
}
|
|
18
22
|
|