@socketsecurity/cli-with-sentry 1.0.110 → 1.0.111
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/dist/cli.js
CHANGED
|
@@ -3863,8 +3863,7 @@ async function coanaFix(fixConfig) {
|
|
|
3863
3863
|
if (isAll) {
|
|
3864
3864
|
const foundCResult = await utils.spawnCoana(['compute-fixes-and-upgrade-purls', cwd, '--manifests-tar-hash', tarHash, ...(fixConfig.rangeStyle ? ['--range-style', fixConfig.rangeStyle] : []), ...fixConfig.unknownFlags], fixConfig.orgSlug, {
|
|
3865
3865
|
cwd,
|
|
3866
|
-
spinner
|
|
3867
|
-
stdio: 'inherit'
|
|
3866
|
+
spinner
|
|
3868
3867
|
});
|
|
3869
3868
|
if (foundCResult.ok) {
|
|
3870
3869
|
const foundIds = utils.cmdFlagValueToArray(/(?<=Vulnerabilities found:).*/.exec(foundCResult.data));
|
|
@@ -3904,7 +3903,7 @@ async function coanaFix(fixConfig) {
|
|
|
3904
3903
|
|
|
3905
3904
|
// Apply fix for single GHSA ID.
|
|
3906
3905
|
// eslint-disable-next-line no-await-in-loop
|
|
3907
|
-
const fixCResult = await utils.spawnCoana(['compute-fixes-and-upgrade-purls', cwd, '--manifests-tar-hash', tarHash, '--apply-fixes-to', id, ...fixConfig.unknownFlags], fixConfig.orgSlug, {
|
|
3906
|
+
const fixCResult = await utils.spawnCoana(['compute-fixes-and-upgrade-purls', cwd, '--manifests-tar-hash', tarHash, '--apply-fixes-to', id, ...(fixConfig.rangeStyle ? ['--range-style', fixConfig.rangeStyle] : []), ...fixConfig.unknownFlags], fixConfig.orgSlug, {
|
|
3908
3907
|
cwd,
|
|
3909
3908
|
spinner,
|
|
3910
3909
|
stdio: 'inherit'
|
|
@@ -15351,5 +15350,5 @@ void (async () => {
|
|
|
15351
15350
|
await utils.captureException(e);
|
|
15352
15351
|
}
|
|
15353
15352
|
})();
|
|
15354
|
-
//# debugId=
|
|
15353
|
+
//# debugId=6b91ffac-2883-43db-b1da-8c6b087473f4
|
|
15355
15354
|
//# sourceMappingURL=cli.js.map
|