Skip to content

Commit f09e43c

Browse files
committed
More work
1 parent 126c3d4 commit f09e43c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/compiler/diagnosticMessages.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5407,7 +5407,7 @@
54075407
"category": "Message",
54085408
"code": 6659
54095409
},
5410-
"Disable emitting file from a compilation.": {
5410+
"Disable emitting files from a compilation.": {
54115411
"category": "Message",
54125412
"code": 6660
54135413
},

src/executeCommandLine/executeCommandLine.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,8 @@ namespace ts {
9090
}
9191

9292
function createColors(sys: System) {
93-
// https://no-color.org
94-
const supportsRicherColors = sys.getEnvironmentVariable("COLORTERM") === "truecolor" || sys.getEnvironmentVariable("TERM") === "xterm-256color"
93+
// https://no-color.org
94+
const supportsRicherColors = sys.getEnvironmentVariable("COLORTERM") === "truecolor" || sys.getEnvironmentVariable("TERM") === "xterm-256color";
9595

9696
const showColors = defaultIsPretty(sys);
9797
if (!showColors) {

0 commit comments

Comments
 (0)