We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a38871 commit baf28a1Copy full SHA for baf28a1
1 file changed
tasks/bundle-wasm.ts
@@ -16,4 +16,8 @@ export const compiled = await WebAssembly.compile(await new Response(stream).arr
16
`;
17
18
await Deno.writeTextFile("wasm.ts", source);
19
-console.log(`wrote wasm.ts (${wasm.length} → ${compressed.byteLength} bytes compressed, ${Math.round(compressed.byteLength / wasm.length * 100)}%)`);
+console.log(
20
+ `wrote wasm.ts (${wasm.length} → ${compressed.byteLength} bytes compressed, ${
21
+ Math.round(compressed.byteLength / wasm.length * 100)
22
+ }%)`,
23
+);
0 commit comments