@socketsecurity/cli-with-sentry 0.15.39 → 0.15.41
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 +4 -1
- package/dist/cli.js.map +1 -1
- package/dist/constants.js +3 -3
- package/dist/constants.js.map +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -3698,6 +3698,7 @@ function getSocketBranchPattern(options) {
|
|
|
3698
3698
|
function createSocketBranchParser(options) {
|
|
3699
3699
|
const pattern = getSocketBranchPattern(options);
|
|
3700
3700
|
return function parse(branch) {
|
|
3701
|
+
debug.debugFn('pattern', pattern.toString());
|
|
3701
3702
|
const match = pattern.exec(branch);
|
|
3702
3703
|
if (!match) {
|
|
3703
3704
|
return null;
|
|
@@ -4747,6 +4748,8 @@ async function pnpmFix(pkgEnvDetails, {
|
|
|
4747
4748
|
}) : [];
|
|
4748
4749
|
if (openPrs.length) {
|
|
4749
4750
|
debug.debugFn(`found: ${openPrs.length} open PRs\n`, openPrs);
|
|
4751
|
+
} else {
|
|
4752
|
+
debug.debugFn('miss: 0 open PRs found');
|
|
4750
4753
|
}
|
|
4751
4754
|
let count = isCi ? openPrs.length : 0;
|
|
4752
4755
|
let actualTree;
|
|
@@ -14107,5 +14110,5 @@ void (async () => {
|
|
|
14107
14110
|
await utils.captureException(e);
|
|
14108
14111
|
}
|
|
14109
14112
|
})();
|
|
14110
|
-
//# debugId=
|
|
14113
|
+
//# debugId=6b317adc-333f-48fb-aed1-2b1b3d057a49
|
|
14111
14114
|
//# sourceMappingURL=cli.js.map
|