Skip to content

Commit cb84301

Browse files
fix
1 parent b5c1bca commit cb84301

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

app/lib/runtime/action-runner.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ export class ActionRunner {
434434

435435
const runCodegenAndTypecheck = async (onOutput?: (output: string) => void) => {
436436
// Convex codegen does a convex directory typecheck, then tsc does a full-project typecheck.
437-
let output = await run(['convex', 'codegen'], outputLabels.frontendTypecheck, onOutput);
437+
let output = await run(['convex', 'codegen'], outputLabels.convexTypecheck, onOutput);
438438
output += await run(
439439
['tsc', '--noEmit', '-p', 'tsconfig.app.json'],
440440
outputLabels.frontendTypecheck,
@@ -447,7 +447,6 @@ export class ActionRunner {
447447
const [eslintResult, codegenResult] = await Promise.all([
448448
runEslint(),
449449
runCodegenAndTypecheck((output) => {
450-
console.log('runing terminaloutput.set() with', output.length, 'characters');
451450
this.terminalOutput.set(output);
452451
}),
453452
]);

0 commit comments

Comments
 (0)