Skip to content

Commit

Permalink
chore: fix type for eco CI
Browse files Browse the repository at this point in the history
  • Loading branch information
chenjiahan committed Sep 13, 2024
1 parent f95a6fc commit a8ac455
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 a8ac455

Please sign in to comment.