-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.ts
More file actions
33 lines (29 loc) · 750 Bytes
/
build.ts
File metadata and controls
33 lines (29 loc) · 750 Bytes
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
import { build } from "vite";
import fs from "fs";
fs.rmSync("dist", { recursive: true, force: true });
fs.mkdirSync("dist");
for (const [entry, name] of [
["src/background.ts", "background"],
["src/content.ts", "content"],
["src/popup.ts", "popup"],
] as const) {
await build({
configFile: false,
build: {
write: true,
outDir: "dist",
emptyOutDir: false,
lib: {
entry,
formats: ["iife"],
name,
fileName: () => `${name}.js`,
},
rollupOptions: { output: { inlineDynamicImports: true } },
},
logLevel: "warn",
});
}
fs.copyFileSync("manifest.json", "dist/manifest.json");
fs.copyFileSync("popup.html", "dist/popup.html");
console.log("Build complete!");