Skip to content
This repository was archived by the owner on Jul 6, 2025. It is now read-only.

Commit fdc98dc

Browse files
committed
fix: fix copyDist method of bundler class
1 parent 1a18a93 commit fdc98dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/bundler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ export class Bundler {
113113

114114
async copyDist() {
115115
await Promise.all(
116-
Array.from(this.#bundledFiles.keys()).map(jsFile => this.copyBundleFile(jsFile))
116+
Array.from(this.#bundledFiles.values()).map(jsFile => this.copyBundleFile(jsFile))
117117
)
118118
}
119119

0 commit comments

Comments
 (0)