Skip to content

Commit

Permalink
fix: type
Browse files Browse the repository at this point in the history
  • Loading branch information
9aoy committed Nov 14, 2024
1 parent 68d34f9 commit 13c4f42
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/compat/webpack/src/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export const build = async (
});
return {
close: () =>
new Promise<void>((resolve) => {
new Promise((resolve) => {
compiler.close(() => {
resolve();
});
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/provider/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export const build = async (

return {
close: () =>
new Promise<void>((resolve) => {
new Promise((resolve) => {
compiler.close(() => {
resolve();
});
Expand Down

0 comments on commit 13c4f42

Please sign in to comment.