Skip to content

Commit

Permalink
Pass onCompileFailure in another call
Browse files Browse the repository at this point in the history
  • Loading branch information
frandiox committed Feb 13, 2023
1 parent 8b0f95e commit 0b0bfa5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/remix-dev/compiler/watch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export async function watch(
}

compiler = createRemixCompiler(config, options);
let assetsManifest = await compile(compiler);
let assetsManifest = await compile(compiler, { onCompileFailure });
onRebuildFinish?.(Date.now() - start, assetsManifest);
}, 500);

Expand Down

0 comments on commit 0b0bfa5

Please sign in to comment.