@travetto/terminal
Advanced tools
Comparing version 3.0.0-rc.4 to 3.0.0-rc.5
{ | ||
"name": "@travetto/terminal", | ||
"version": "3.0.0-rc.4", | ||
"version": "3.0.0-rc.5", | ||
"description": "General terminal support", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -49,3 +49,3 @@ import tty from 'tty'; | ||
if (!color && env) { | ||
const [bg] = env.split(';'); | ||
const [, bg] = env.split(';'); | ||
color = ColorDefineUtil.rgbFromAnsi256(+bg); | ||
@@ -52,0 +52,0 @@ } |
@@ -102,3 +102,6 @@ import tty from 'tty'; | ||
await this.#query.close(); | ||
return this.writer().reset().commit(); | ||
if (this.interactive) { | ||
await this.writer().reset().commit(); | ||
} | ||
return; | ||
} | ||
@@ -105,0 +108,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
39024
1022