@coana-tech/cli 14.8.4 → 14.8.6
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/cli.mjs +8 -2
- package/package.json +1 -1
package/cli.mjs
CHANGED
|
@@ -193727,8 +193727,14 @@ var MAVEN_PUBLIC_REPOSITORIES = [
|
|
|
193727
193727
|
"https://nexus.bedatadriven.com/content/groups/public"
|
|
193728
193728
|
];
|
|
193729
193729
|
var memoizedParseShellArgs = memoize3(parseShellArgs);
|
|
193730
|
+
function getUrlForProject(repository, groupId, artifactId) {
|
|
193731
|
+
return `${repository}/${groupId.replaceAll(".", "/")}/${artifactId}`;
|
|
193732
|
+
}
|
|
193733
|
+
function getUrlForPackage(repository, groupId, artifactId, version3) {
|
|
193734
|
+
return `${getUrlForProject(repository, groupId, artifactId)}/${version3}`;
|
|
193735
|
+
}
|
|
193730
193736
|
function getUrlForArtifact(repository, groupId, artifactId, type, classifier, version3) {
|
|
193731
|
-
return `${repository
|
|
193737
|
+
return `${getUrlForPackage(repository, groupId, artifactId, version3)}/${artifactId}-${version3}${classifier ? `-${classifier}` : ""}.${type ?? "jar"}`;
|
|
193732
193738
|
}
|
|
193733
193739
|
|
|
193734
193740
|
// ../security-auditor/security-auditor-api/src/vulnerability-patterns-helper/get-interesting-urls-for-vulnerability.ts
|
|
@@ -195033,7 +195039,7 @@ async function onlineScan(dependencyTree, apiKey, timeout) {
|
|
|
195033
195039
|
}
|
|
195034
195040
|
|
|
195035
195041
|
// dist/version.js
|
|
195036
|
-
var version2 = "14.8.
|
|
195042
|
+
var version2 = "14.8.6";
|
|
195037
195043
|
|
|
195038
195044
|
// dist/cli-core.js
|
|
195039
195045
|
var { omit, partition, pick } = import_lodash15.default;
|