@socketsecurity/cli-with-sentry 0.15.6 → 0.15.7
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 +11 -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/external/@socketsecurity/registry/lib/logger.js +44 -30
- package/external/@socketsecurity/registry/package.json +3 -3
- package/package.json +2 -2
package/dist/cli.js
CHANGED
|
@@ -4153,6 +4153,11 @@ async function npmFix(
|
|
|
4153
4153
|
logger.logger.warn(
|
|
4154
4154
|
`Unexpected condition: Lockfile entries not found for ${name}.\n`
|
|
4155
4155
|
)
|
|
4156
|
+
if (debug.isDebug()) {
|
|
4157
|
+
console.dir(arb.idealTree, {
|
|
4158
|
+
depth: 999
|
|
4159
|
+
})
|
|
4160
|
+
}
|
|
4156
4161
|
continue
|
|
4157
4162
|
}
|
|
4158
4163
|
|
|
@@ -4547,6 +4552,11 @@ async function pnpmFix(
|
|
|
4547
4552
|
logger.logger.warn(
|
|
4548
4553
|
`Unexpected condition: Lockfile entries not found for ${name}.\n`
|
|
4549
4554
|
)
|
|
4555
|
+
if (debug.isDebug()) {
|
|
4556
|
+
console.dir(actualTree, {
|
|
4557
|
+
depth: 999
|
|
4558
|
+
})
|
|
4559
|
+
}
|
|
4550
4560
|
continue
|
|
4551
4561
|
}
|
|
4552
4562
|
|
|
@@ -12359,5 +12369,5 @@ void (async () => {
|
|
|
12359
12369
|
await utils.captureException(e)
|
|
12360
12370
|
}
|
|
12361
12371
|
})()
|
|
12362
|
-
//# debugId=
|
|
12372
|
+
//# debugId=481bc06b-e0e9-407e-a853-42da3bb2abbb
|
|
12363
12373
|
//# sourceMappingURL=cli.js.map
|