-
Notifications
You must be signed in to change notification settings - Fork 4.1k
/
build.js
55 lines (49 loc) · 1.36 KB
/
build.js
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
import { rimraf } from "rimraf";
import { copyFile, mkdir, readFile, writeFile } from "node:fs/promises";
import { build } from "esbuild";
import { execSync } from "node:child_process";
// read version from package.json
const pkg = JSON.parse(await readFile("package.json"));
process.env.ULTRAVIOLET_VERSION = pkg.version;
const isDevelopment = process.argv.includes("--dev");
await rimraf("dist");
await mkdir("dist");
// don't compile these files
await copyFile("src/sw.js", "dist/sw.js");
await copyFile("src/uv.config.js", "dist/uv.config.js");
let builder = await build({
platform: "browser",
sourcemap: true,
minify: !isDevelopment,
entryPoints: {
"uv.bundle": "./src/rewrite/index.js",
"uv.client": "./src/client/index.js",
"uv.handler": "./src/uv.handler.js",
"uv.sw": "./src/uv.sw.js",
},
define: {
"process.env.ULTRAVIOLET_VERSION": JSON.stringify(
process.env.ULTRAVIOLET_VERSION
),
"process.env.ULTRAVIOLET_COMMIT_HASH": (() => {
try {
let hash = JSON.stringify(
execSync("git rev-parse --short HEAD", {
encoding: "utf-8",
}).replace(/\r?\n|\r/g, "")
);
return hash;
} catch (e) {
return "unknown";
}
})(),
},
bundle: true,
treeShaking: true,
metafile: isDevelopment,
logLevel: "info",
outdir: "dist/",
});
if (isDevelopment) {
await writeFile("metafile.json", JSON.stringify(builder.metafile));
}