MCPcopy Create free account
hub / github.com/heygen-com/hyperframes / openAndPrintIssue

Function openAndPrintIssue

packages/cli/src/commands/feedback.ts:84–96  ·  view source on GitHub ↗
(url: string)

Source from the content-addressed store, hash-verified

82}
83
84async function openAndPrintIssue(url: string): Promise<void> {
85 if (process.stdout.isTTY) {
86 try {
87 await open(url);
88 } catch {
89 // Headless or no browser; the printed URL below is the fallback.
90 }
91 }
92 console.log();
93 console.log(` ${c.dim("Review and submit the pre-filled issue (it is not auto-submitted):")}`);
94 console.log(` ${c.accent(url)}`);
95 console.log();
96}
97
98async function fileGithubIssue(opts: {
99 rating: number;

Callers 1

fileGithubIssueFunction · 0.85

Calls 1

openFunction · 0.85

Tested by

no test coverage detected