@staff0rd/assist 0.106.0 → 0.106.1

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/index.js +3 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -6,7 +6,7 @@ import { Command } from "commander";
6
6
  // package.json
7
7
  var package_default = {
8
8
  name: "@staff0rd/assist",
9
- version: "0.106.0",
9
+ version: "0.106.1",
10
10
  type: "module",
11
11
  main: "dist/index.js",
12
12
  bin: {
@@ -4573,7 +4573,7 @@ function deleteCommentsCache(prNumber) {
4573
4573
  function replyToComment(org, repo, prNumber, commentId, message) {
4574
4574
  execSync21(
4575
4575
  `gh api repos/${org}/${repo}/pulls/${prNumber}/comments -f body="${message.replace(/"/g, '\\"')}" -F in_reply_to=${commentId}`,
4576
- { stdio: "inherit" }
4576
+ { stdio: ["inherit", "pipe", "inherit"] }
4577
4577
  );
4578
4578
  }
4579
4579
  function resolveThread(threadId) {
@@ -4583,7 +4583,7 @@ function resolveThread(threadId) {
4583
4583
  try {
4584
4584
  execSync21(
4585
4585
  `gh api graphql -F query=@${queryFile} -f threadId="${threadId}"`,
4586
- { stdio: "inherit" }
4586
+ { stdio: ["inherit", "pipe", "inherit"] }
4587
4587
  );
4588
4588
  } finally {
4589
4589
  unlinkSync5(queryFile);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@staff0rd/assist",
3
- "version": "0.106.0",
3
+ "version": "0.106.1",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "bin": {