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 277a997 commit 6d19872Copy full SHA for 6d19872
compiler-core/templates/echo.mjs
@@ -9,7 +9,7 @@ function echo(value, message, file, line) {
9
if (globalThis.process?.stderr?.write) {
10
// If we're in Node.js, use `stderr`
11
const string = `${grey}${file_line}${reset_color}${string_message}\n${string_value}\n`;
12
- process.stderr.write(string);
+ globalThis.process.stderr.write(string);
13
} else if (globalThis.Deno) {
14
// If we're in Deno, use `stderr`
15
0 commit comments