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 43d60fb commit fec6ff6Copy full SHA for fec6ff6
lib/src/compile.ts
@@ -153,6 +153,7 @@ async function compileRequestAsync(
153
): Promise<CompileResult> {
154
const functions = new FunctionRegistry(options?.functions);
155
const embeddedCompiler = new AsyncEmbeddedCompiler();
156
+ embeddedCompiler.stderr$.subscribe(data => process.stderr.write(data));
157
158
try {
159
const dispatcher = createDispatcher<'async'>(
@@ -198,6 +199,7 @@ function compileRequestSync(
198
199
): CompileResult {
200
201
const embeddedCompiler = new SyncEmbeddedCompiler();
202
203
204
205
const dispatcher = createDispatcher<'sync'>(
0 commit comments