Skip to content

Commit a053114

Browse files
committed
apply cursor patch
1 parent 479c304 commit a053114

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

packages/cli-v3/src/utilities/supportsHyperlinks.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ function parseVersion(versionString = ""): { major: number; minor: number; patch
2929
export function createSupportsHyperlinks(stream: NodeJS.WriteStream): boolean {
3030
const {
3131
CI,
32+
CURSOR_TRACE_ID,
3233
FORCE_HYPERLINK,
3334
NETLIFY,
3435
TEAMCITY_VERSION,
@@ -86,6 +87,10 @@ export function createSupportsHyperlinks(stream: NodeJS.WriteStream): boolean {
8687
return false;
8788
}
8889

90+
if (CURSOR_TRACE_ID) {
91+
return true;
92+
}
93+
8994
if (TERM_PROGRAM) {
9095
const version = parseVersion(TERM_PROGRAM_VERSION);
9196

0 commit comments

Comments
 (0)