[READ-ONLY] Mirror of https://github.com/bombshell-dev/tty. Platform independent 2D layout engine for terminal applications based on Clay
5

Configure Feed

Select the types of activity you want to include in your feed.

ref(build): do not export bytes

Nate Moore (May 31, 2026, 11:35 PM -0500) 5b99cbae e5ee6199

+1 -1
+1 -1
tasks/bundle-wasm.ts
··· 4 4 const base64 = encodeBase64(wasm); 5 5 6 6 const source = `const bin = atob("${base64}"); 7 - export const bytes = new Uint8Array(bin.length); 7 + const bytes = new Uint8Array(bin.length); 8 8 for (let i = 0; i < bin.length; i++) bytes[i] = bin.charCodeAt(i); 9 9 export const compiled = await WebAssembly.compile(bytes); 10 10 `;