@socketsecurity/cli-with-sentry 1.0.23 → 1.0.24
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 +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/git.d.mts.map +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -3112,6 +3112,14 @@ async function gitCreateAndPushBranch(branch, commitMsg, filepaths, options) {
|
|
|
3112
3112
|
stdio: 'ignore'
|
|
3113
3113
|
};
|
|
3114
3114
|
try {
|
|
3115
|
+
debug.debugFn('args', {
|
|
3116
|
+
branch,
|
|
3117
|
+
user,
|
|
3118
|
+
email,
|
|
3119
|
+
cwd,
|
|
3120
|
+
filepaths,
|
|
3121
|
+
commitMsg
|
|
3122
|
+
});
|
|
3115
3123
|
await gitEnsureIdentity(user, email, cwd);
|
|
3116
3124
|
await spawn.spawn('git', ['checkout', '-b', branch], stdioIgnoreOptions);
|
|
3117
3125
|
await spawn.spawn('git', ['add', ...filepaths], stdioIgnoreOptions);
|
|
@@ -14259,5 +14267,5 @@ void (async () => {
|
|
|
14259
14267
|
await utils.captureException(e);
|
|
14260
14268
|
}
|
|
14261
14269
|
})();
|
|
14262
|
-
//# debugId=
|
|
14270
|
+
//# debugId=80d770c9-f246-4187-bd69-9c4b33b9c563
|
|
14263
14271
|
//# sourceMappingURL=cli.js.map
|