We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10162e7 commit 534a381Copy full SHA for 534a381
generators/bikeshed.ts
@@ -122,13 +122,7 @@ async function invokeBikeshed(
122
const fatals: BikeshedResultMessage[] = [];
123
const outcomes: BikeshedMessage[] = [];
124
125
- const stdout = stdoutChunks
126
- .join("")
127
- // Correct unfinished JSON in case of fatal error,
128
- // which may not include a trailing comma in 5.3.5 (#3198)
129
- .replace(/\},?[\n\s]*$/, "}]")
130
- // Correct for #3197 (fixed in bikeshed 5.3.5)
131
- .replace(/\n\[/g, "");
+ const stdout = stdoutChunks.join("");
132
133
try {
134
const messages = JSON.parse(
0 commit comments