supports-hyperlinks 4.1.0 → 4.2.0

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/index.js +4 -0
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -126,6 +126,10 @@ export function createSupportsHyperlinks(stream) {
126
126
  // Support added in v0.11 (2022-10-13)
127
127
  return true;
128
128
  }
129
+
130
+ case 'xterm-kitty': {
131
+ return true;
132
+ }
129
133
  // No default
130
134
  }
131
135
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "supports-hyperlinks",
3
- "version": "4.1.0",
3
+ "version": "4.2.0",
4
4
  "description": "Detect whether a terminal supports hyperlinks",
5
5
  "license": "MIT",
6
6
  "repository": "chalk/supports-hyperlinks",