codemodctl 0.1.32 → 0.1.33

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.
Files changed (2) hide show
  1. package/dist/cli.mjs +7 -4
  2. package/package.json +1 -1
package/dist/cli.mjs CHANGED
@@ -118,10 +118,13 @@ const createPrCommand = defineCommand({
118
118
  process.exit(1);
119
119
  }
120
120
  try {
121
- await $({ env: process.env.DEBUG ? {
122
- GIT_TRACE: "1",
123
- GIT_TRACE_PACKET: "1"
124
- } : {} })`git push origin ${codemodBranchName} --force`;
121
+ await $({ env: {
122
+ GIT_CURL_VERBOSE: "1",
123
+ ...process.env.DEBUG ? {
124
+ GIT_TRACE: "1",
125
+ GIT_TRACE_PACKET: "1"
126
+ } : {}
127
+ } })`git -c http.version=HTTP/1.1 -c http.postBuffer=524288000 push origin HEAD:refs/heads/${codemodBranchName} --force --no-thin`;
125
128
  console.log(`Pushed branch to origin: ${codemodBranchName}`);
126
129
  } catch (error) {
127
130
  console.error("Error: Failed to push changes");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codemodctl",
3
- "version": "0.1.32",
3
+ "version": "0.1.33",
4
4
  "description": "CLI tool and utilities for workflow engine operations, file sharding, and codeowner analysis",
5
5
  "type": "module",
6
6
  "exports": {