We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 967b419 commit b586bd9Copy full SHA for b586bd9
build.ts
@@ -95,10 +95,7 @@ export async function build({
95
for (const output of result.outputs) {
96
if (output.kind === "entry-point" && output.hash) {
97
const path = relative(outdir, output.path);
98
- // Bun has bug that generated hash cannot reflect the changes in dynamic import
99
- hashed[`/${path}`] = Bun.hash
100
- .murmur64v2(await output.arrayBuffer())
101
- .toString(16);
+ hashed[`/${path}`] = output.hash;
102
}
103
104
Bun.write(
0 commit comments