@socketsecurity/cli-with-sentry 0.15.12 → 0.15.14
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/.config/tsconfig.dts.tsbuildinfo +1 -1
- package/dist/cli.js +9 -1
- package/dist/cli.js.map +1 -1
- package/dist/constants.js +3 -3
- package/dist/constants.js.map +1 -1
- package/dist/types/commands/fix/npm-fix.d.mts.map +1 -1
- package/dist/types/commands/fix/pnpm-fix.d.mts.map +1 -1
- package/dist/vendor.js +782 -118
- package/dist/vendor.js.map +1 -1
- package/external/@socketsecurity/registry/external/@socketregistry/yocto-spinner.js +1 -1
- package/external/@socketsecurity/registry/external/@socketregistry/yocto-spinner.js.map +1 -1
- package/external/@socketsecurity/registry/lib/constants/skip-tests-by-ecosystem.js +5 -1
- package/external/@socketsecurity/registry/lib/logger.js +6 -4
- package/external/@socketsecurity/registry/lib/packages.d.ts +18 -2
- package/external/@socketsecurity/registry/lib/packages.js +47 -23
- package/external/@socketsecurity/registry/package.json +2 -2
- package/package.json +8 -8
package/dist/cli.js
CHANGED
|
@@ -3751,6 +3751,8 @@ async function npmFix(pkgEnvDetails, {
|
|
|
3751
3751
|
if (!oldVersions.length) {
|
|
3752
3752
|
logger.logger.warn(`Unexpected condition: Lockfile entries not found for ${name}.\n`);
|
|
3753
3753
|
// Skip to next package.
|
|
3754
|
+
logger.logger.dedent();
|
|
3755
|
+
spinner?.dedent();
|
|
3754
3756
|
continue infoEntriesLoop;
|
|
3755
3757
|
}
|
|
3756
3758
|
|
|
@@ -3920,6 +3922,8 @@ async function npmFix(pkgEnvDetails, {
|
|
|
3920
3922
|
spinner?.failAndStop(`Update failed for ${oldId} in ${workspaceName}`, error);
|
|
3921
3923
|
}
|
|
3922
3924
|
if (++count >= limit) {
|
|
3925
|
+
logger.logger.dedent();
|
|
3926
|
+
spinner?.dedent();
|
|
3923
3927
|
break infoEntriesLoop;
|
|
3924
3928
|
}
|
|
3925
3929
|
}
|
|
@@ -4094,6 +4098,8 @@ async function pnpmFix(pkgEnvDetails, {
|
|
|
4094
4098
|
if (!oldVersions.length) {
|
|
4095
4099
|
logger.logger.warn(`Unexpected condition: Lockfile entries not found for ${name}.\n`);
|
|
4096
4100
|
// Skip to next package.
|
|
4101
|
+
logger.logger.dedent();
|
|
4102
|
+
spinner?.dedent();
|
|
4097
4103
|
continue infoEntriesLoop;
|
|
4098
4104
|
}
|
|
4099
4105
|
|
|
@@ -4290,6 +4296,8 @@ async function pnpmFix(pkgEnvDetails, {
|
|
|
4290
4296
|
spinner?.failAndStop(`Update failed for ${oldId} in ${workspaceName}`, error);
|
|
4291
4297
|
}
|
|
4292
4298
|
if (++count >= limit) {
|
|
4299
|
+
logger.logger.dedent();
|
|
4300
|
+
spinner?.dedent();
|
|
4293
4301
|
break infoEntriesLoop;
|
|
4294
4302
|
}
|
|
4295
4303
|
}
|
|
@@ -11527,5 +11535,5 @@ void (async () => {
|
|
|
11527
11535
|
await utils.captureException(e);
|
|
11528
11536
|
}
|
|
11529
11537
|
})();
|
|
11530
|
-
//# debugId=
|
|
11538
|
+
//# debugId=f795e75b-2414-4f4b-8612-273af979480d
|
|
11531
11539
|
//# sourceMappingURL=cli.js.map
|