forked from interstellard/chatgpt-advanced
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.mjs
147 lines (129 loc) · 3.9 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
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
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,
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 copyVersionFromPackageJsonToManifests() {
const packageJson = await fs.readJson("package.json")
const version = packageJson.version
const manifestFiles = ["src/manifest.json", "src/manifest.v2.json"]
for (const manifestFile of manifestFiles) {
const manifest = await fs.readJson(manifestFile)
manifest.version = version
await fs.writeJson(manifestFile, manifest, { spaces: 2 })
console.info(`Updated version in ${manifestFile} to ${version}`)
}
}
async function createZipExtensionForBrowser(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.info(`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() {
const updateVersion = process.argv.includes("--update-version")
if (updateVersion) {
await copyVersionFromPackageJsonToManifests()
}
await cleanBuildDir()
await runEsbuild()
const createZips = process.argv.includes("--create-zips")
if (createZips) {
try {
await deleteZipsInBuildFolder()
await createZipExtensionForBrowser("chrome")
await createZipExtensionForBrowser("firefox")
} catch (error) {
console.error(error)
}
}
console.info("Build complete")
async function deleteZipsInBuildFolder() {
const entries = await fs.readdir("build")
for (const entry of entries) {
if (path.extname(entry) === ".zip") {
await fs.remove(`build/${entry}`)
}
}
}
}
build()