socket 0.15.51 → 0.15.52
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
|
@@ -4992,7 +4992,11 @@ async function pnpmFix(pkgEnvDetails, {
|
|
|
4992
4992
|
const newVersion = shadowInject.findBestPatchVersion(node, availableVersions, vulnerableVersionRange);
|
|
4993
4993
|
if (activeBranches.find(b => b.newVersion === newVersion)) {
|
|
4994
4994
|
debug.debugFn(`skip: open PR found for ${name}@${newVersion}`);
|
|
4995
|
-
count
|
|
4995
|
+
if (++count >= limit) {
|
|
4996
|
+
logger.logger.dedent();
|
|
4997
|
+
spinner?.dedent();
|
|
4998
|
+
break infoEntriesLoop;
|
|
4999
|
+
}
|
|
4996
5000
|
continue infosLoop;
|
|
4997
5001
|
}
|
|
4998
5002
|
const newVersionPackument = newVersion ? packument.versions[newVersion] : undefined;
|
|
@@ -14278,5 +14282,5 @@ void (async () => {
|
|
|
14278
14282
|
await utils.captureException(e);
|
|
14279
14283
|
}
|
|
14280
14284
|
})();
|
|
14281
|
-
//# debugId=
|
|
14285
|
+
//# debugId=af26517c-db28-417c-8217-08e459c8dcc5
|
|
14282
14286
|
//# sourceMappingURL=cli.js.map
|