Skip to content

Commit

Permalink
chore: fix type for eco CI (web-infra-dev#3472)
Browse files Browse the repository at this point in the history
  • Loading branch information
chenjiahan authored Sep 13, 2024
1 parent b3967b8 commit 1770fc4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/compat/webpack/src/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ export const build = async (
return {
close: () =>
new Promise((resolve) => {
watching.close(resolve);
watching.close(() => {
resolve();
});
}),
};
}
Expand Down

0 comments on commit 1770fc4

Please sign in to comment.