-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.ts
More file actions
203 lines (187 loc) Β· 5.61 KB
/
build.ts
File metadata and controls
203 lines (187 loc) Β· 5.61 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
/* eslint-disable no-await-in-loop, no-console */
import { basename } from "node:path"; // eslint-disable-line unicorn/import-style
import { xcss } from "bun-plugin-ekscss";
import * as csso from "csso";
import * as lightningcss from "lightningcss";
import { PurgeCSS, type RawContent } from "purgecss";
import * as terser from "terser";
import { createManifest } from "./manifest.config.ts";
import xcssConfig from "./xcss.config.js";
const env = Bun.env.NODE_ENV;
const dev = env === "development";
function makeHTML(release: string) {
// nosemgrep: generic-api-key
const bugboxApiKey = "AZczqkPBcACag7DE9p762A";
return `
<!doctype html>
<meta charset=utf-8>
<meta name=google content=notranslate>
<link href=literata.ttf rel=preload as=font type=font/ttf crossorigin>
<link href=reader.css rel=stylesheet>
<script src=health.js crossorigin data-key=${bugboxApiKey} data-release=${release}${
env === "production" ? "" : ` data-env=${String(env)}`
}></script>
<script src=reader.js defer></script>
`
.trim()
.replaceAll(/\n\s+/g, "\n"); // remove leading whitespace
}
async function minifyCSS(artifacts: Bun.BuildArtifact[]) {
const content: RawContent[] = [];
const purgecss = new PurgeCSS();
const encoder = new TextEncoder();
for (const artifact of artifacts) {
if (artifact.path.endsWith(".js") || artifact.path.endsWith(".mjs")) {
content.push({ extension: ".js", raw: await artifact.text() });
}
}
for (const artifact of artifacts) {
if (artifact.path.endsWith(".css")) {
const filename = basename(artifact.path);
const source = await artifact.text();
const purged = await purgecss.purge({
content,
css: [{ raw: source }],
safelist: ["html", "body"],
blocklist: [
// XXX: Remember to remove if actually using the element tag
"article",
"aside",
"blockquote",
"break",
"canvas",
"dd",
// "disabled",
"dt",
"embed",
"figcaption",
"figure",
// "footer",
"h1",
"h2",
"h3",
"h4",
"h5",
"h6",
"header",
"hgroup",
"hr",
"iframe",
"img",
"input",
"link",
"main",
"nav",
"ol",
"pre",
"section",
"select",
"source",
"svg",
"table",
"textarea",
"ul",
],
});
const minified = lightningcss.transform({
filename,
code: encoder.encode(purged[0].css),
minify: true,
// eslint-disable-next-line no-bitwise
targets: { chrome: 134 << 16 }, // matches manifest minimum_chrome_version
});
if (minified.warnings.length > 0) console.error(minified.warnings);
const minified2 = csso.minify(minified.code.toString(), {
filename,
forceMediaMerge: true, // somewhat unsafe
usage: {
blacklist: {
classes: [
"button", // #apply mapped to "button"
"disabled", // not actually used (as class)
],
},
},
// debug: true,
});
await Bun.write(artifact.path, minified2.css);
}
}
}
async function minifyJS(artifacts: Bun.BuildArtifact[]): Promise<void> {
for (const artifact of artifacts) {
if (artifact.path.endsWith(".js") || artifact.path.endsWith(".mjs")) {
const source = await artifact.text();
const result = await terser.minify(source, {
ecma: 2020,
compress: {
reduce_funcs: false, // prevent single-use function inlining
hoist_funs: true,
passes: 2,
// NOTE: Comment out to keep performance markers for debugging.
pure_funcs: ["performance.mark", "performance.measure"],
},
format: {
semicolons: false, // better debugging with near-zero overhead
},
});
await Bun.write(artifact.path, result.code!);
}
}
}
console.time("prebuild");
await Bun.$`rm -rf dist`;
await Bun.$`cp -r static dist`;
console.timeEnd("prebuild");
// Extension manifest
console.time("manifest");
const manifest = createManifest();
const release = manifest.version_name ?? manifest.version;
await Bun.write("dist/manifest.json", JSON.stringify(manifest));
console.timeEnd("manifest");
// Reader app HTML
console.time("html");
await Bun.write("dist/reader.html", makeHTML(release));
console.timeEnd("html");
// Health insights (exception monitoring)
console.time("build:health");
const out1 = await Bun.build({
entrypoints: ["src/health.ts"],
outdir: "dist",
target: "browser",
define: {
"process.env.APP_RELEASE": JSON.stringify(release),
"process.env.NODE_ENV": JSON.stringify(env),
},
banner: '"use strict";',
minify: !dev,
sourcemap: dev ? "linked" : "none",
});
console.timeEnd("build:health");
// Reader app JS
console.time("build:reader");
const out2 = await Bun.build({
entrypoints: ["src/reader.ts"],
outdir: "dist",
target: "browser",
external: ["*.ttf"],
define: {
"process.env.APP_RELEASE": JSON.stringify(release),
"process.env.NODE_ENV": JSON.stringify(env),
},
plugins: [xcss(xcssConfig)],
banner: '"use strict";',
emitDCEAnnotations: true,
minify: !dev,
sourcemap: dev ? "linked" : "none",
});
console.timeEnd("build:reader");
if (!dev) {
console.time("minify:css");
await minifyCSS(out2.outputs);
console.timeEnd("minify:css");
console.time("minify:js");
await minifyJS(out1.outputs);
await minifyJS(out2.outputs);
console.timeEnd("minify:js");
}