forked from interstellard/chatgpt-advanced
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.mjs
120 lines (105 loc) · 3.05 KB
/
build.mjs
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
import esbuild from "esbuild";
import archiver from "archiver";
import fs from "fs-extra";
import tailwindcss from "tailwindcss";
import autoprefixer from "autoprefixer";
import postcssPlugin from "esbuild-style-plugin";
import copyStaticFilesPlugin from "esbuild-copy-files-plugin";
import path from 'path';
const buildDir = "build";
const minify = process.argv.includes("--minify");
async function cleanBuildDir() {
const entries = await fs.readdir(buildDir);
for (const entry of entries) {
if (path.extname(entry) === ".zip") continue;
await fs.remove(`${buildDir}/${entry}`);
}
}
async function runEsbuild() {
await esbuild.build({
entryPoints: [
"src/content-scripts/mainUI.tsx",
"src/background/bg.ts",
"src/options/options.tsx",
],
outdir: buildDir,
bundle: true,
minify: minify,
treeShaking: true,
define: {
"process.env.NODE_ENV": '"production"',
},
jsxFactory: "h",
jsxFragment: "Fragment",
jsx: "automatic",
loader: {
".png": "dataurl",
},
plugins: [
postcssPlugin({
postcss: {
plugins: [tailwindcss, autoprefixer],
},
}),
copyStaticFilesPlugin({
source: ["src/manifest.json", "src/assets/"],
target: buildDir,
copyWithFolder: false,
}),
copyStaticFilesPlugin({
source: ["src/options/options.html"],
target: buildDir + "/options",
copyWithFolder: false,
}),
copyStaticFilesPlugin({
source: ["src/_locales/"],
target: buildDir,
copyWithFolder: true,
}),
],
});
}
async function zipExtensionForBrowser(browser) {
const manifest = await fs.readJson(`${buildDir}/manifest.json`);
const version = manifest.version;
let archiveName = `build/webchatgpt-${version}-${browser}.zip`;
const archive = archiver("zip", { zlib: { level: 9 } });
const stream = fs.createWriteStream(archiveName);
archive.pipe(stream);
await addFilesToZip(archive, browser);
console.log(`Creating ${archiveName}…`);
archive.finalize();
}
async function addFilesToZip(archive, browser) {
const entries = await fs.readdir("build");
for (const entry of entries) {
const entryStat = await fs.stat(`build/${entry}`);
if (entryStat.isDirectory()) {
archive.directory(`build/${entry}`, entry);
} else {
if (path.extname(entry) === ".zip") continue;
if (entry === "manifest.json") continue;
archive.file(`build/${entry}`, { name: entry });
}
}
if (browser === "firefox") {
archive.file("src/manifest.v2.json", { name: "manifest.json" });
} else if (browser === "chrome") {
archive.file("build/manifest.json", { name: "manifest.json" });
}
}
async function build() {
await cleanBuildDir();
await runEsbuild();
const createZips = process.argv.includes("--create-zips");
if (createZips) {
try {
await zipExtensionForBrowser("chrome");
await zipExtensionForBrowser("firefox");
} catch (error) {
console.error(error);
}
}
console.log("Build complete");
}
build();