@socketsecurity/cli-with-sentry 1.0.109 → 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
|
@@ -3848,7 +3848,8 @@ async function coanaFix(fixConfig) {
|
|
|
3848
3848
|
}
|
|
3849
3849
|
const fixCResult = await utils.spawnCoana(['compute-fixes-and-upgrade-purls', cwd, '--manifests-tar-hash', tarHash, '--apply-fixes-to', ...(isAll ? ['all'] : ghsas), ...(fixConfig.rangeStyle ? ['--range-style', fixConfig.rangeStyle] : []), ...fixConfig.unknownFlags], fixConfig.orgSlug, {
|
|
3850
3850
|
cwd,
|
|
3851
|
-
spinner
|
|
3851
|
+
spinner,
|
|
3852
|
+
stdio: 'inherit'
|
|
3852
3853
|
});
|
|
3853
3854
|
spinner?.stop();
|
|
3854
3855
|
return fixCResult.ok ? {
|
|
@@ -3902,9 +3903,10 @@ async function coanaFix(fixConfig) {
|
|
|
3902
3903
|
|
|
3903
3904
|
// Apply fix for single GHSA ID.
|
|
3904
3905
|
// eslint-disable-next-line no-await-in-loop
|
|
3905
|
-
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, {
|
|
3906
3907
|
cwd,
|
|
3907
|
-
spinner
|
|
3908
|
+
spinner,
|
|
3909
|
+
stdio: 'inherit'
|
|
3908
3910
|
});
|
|
3909
3911
|
if (!fixCResult.ok) {
|
|
3910
3912
|
logger.logger.error(`Update failed for ${id}: ${fixCResult.message || 'Unknown error'}`);
|
|
@@ -15348,5 +15350,5 @@ void (async () => {
|
|
|
15348
15350
|
await utils.captureException(e);
|
|
15349
15351
|
}
|
|
15350
15352
|
})();
|
|
15351
|
-
//# debugId=
|
|
15353
|
+
//# debugId=6b91ffac-2883-43db-b1da-8c6b087473f4
|
|
15352
15354
|
//# sourceMappingURL=cli.js.map
|