-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.ts
80 lines (75 loc) · 2.65 KB
/
build.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
import { dim } from "https://deno.land/[email protected]/fmt/colors.ts";
import { ensureDir } from "https://deno.land/[email protected]/fs/ensure_dir.ts";
import { encode } from "https://deno.land/[email protected]/encoding/base64.ts";
import { dirname } from "https://deno.land/[email protected]/path/mod.ts";
async function run(cmd: string[]) {
const p = Deno.run({
cmd,
stdout: "inherit",
stderr: "inherit",
});
const status = await p.status();
p.close();
return status.success;
}
async function gzip(path: string): Promise<ArrayBuffer> {
const f = await Deno.open(path);
return new Response(
new Response(f.readable).body!.pipeThrough(new CompressionStream("gzip")),
).arrayBuffer();
}
Deno.chdir(dirname(new URL(import.meta.url).pathname));
if (import.meta.main) {
const ok = await run(["wasm-pack", "build", "--target", "web"]);
if (ok) {
let prevWasmSize: number;
try {
prevWasmSize = (await Deno.stat("./dist/wasm.js")).size;
} catch (_e) {
prevWasmSize = 0;
}
const wasmGz = encode(await gzip("./pkg/aleph_compiler_bg.wasm"));
const jsCode = await Deno.readTextFile("./pkg/aleph_compiler.js");
await ensureDir("./dist");
await Deno.writeTextFile(
"./dist/wasm.js",
`const wasmGz = "${wasmGz}";\nconst ungzip = (data) => new Response(new Blob([data]).stream().pipeThrough(new DecompressionStream("gzip"))).arrayBuffer();\nexport default () => ungzip(Uint8Array.from(atob(wasmGz), c => c.charCodeAt(0)));`,
);
await Deno.writeTextFile(
"./dist/compiler.js",
jsCode
.replace(`import * as __wbg_star0 from 'env';`, "")
.replace(
`imports['env'] = __wbg_star0;`,
`imports['env'] = { now: () => Date.now() };`,
)
.replace(
"console.error(getStringFromWasm0(arg0, arg1));",
`
const msg = getStringFromWasm0(arg0, arg1);
if (msg.includes('DiagnosticBuffer(["')) {
const diagnostic = msg.split('DiagnosticBuffer(["')[1].split('"])')[0]
throw new Error(diagnostic);
} else {
throw new Error(msg);
}
`,
),
);
await run(["deno", "fmt", "-q", "./dist/compiler.js"]);
const wasmSize = (await Deno.stat("./dist/wasm.js")).size;
const changed = ((wasmSize - prevWasmSize) / prevWasmSize) * 100;
if (changed) {
console.log(
`${dim("[INFO]")}: wasm.js ${changed < 0 ? "-" : "+"}${
Math.abs(changed).toFixed(2)
}% (${
[prevWasmSize, wasmSize].filter(Boolean).map((n) =>
(n / (1024 * 1024)).toFixed(2) + "MB"
)
.join(" -> ")
})`,
);
}
}
}