-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.mjs
169 lines (145 loc) · 4.06 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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
import archiver from 'archiver'
import autoprefixer from 'autoprefixer'
import * as dotenv from 'dotenv'
import esbuild from 'esbuild'
import postcssPlugin from 'esbuild-style-plugin'
import fs from 'fs-extra'
import process from 'node:process'
import tailwindcss from 'tailwindcss'
import path from 'path'
dotenv.config()
const outdir = 'build'
const packagesDir = 'packages'
const appName = 'test'
const isDev = process.env.NODE_ENV === 'dev'
let buildConfig = {
entryPoints: [
'src/background/index.ts',
'src/content-script/index.ts',
'src/popup/index.tsx',
],
bundle: true,
outdir: outdir,
treeShaking: true,
minify: true,
drop: ['console', 'debugger'],
legalComments: 'none',
define: {
'process.env.NODE_ENV': '"production"',
},
jsxFactory: 'h',
jsxFragment: 'Fragment',
jsx: 'automatic',
loader: {
'.gif': 'dataurl',
'.png': 'dataurl',
'.svg': 'dataurl',
'.woff2': 'file',
'.woff': 'file'
},
plugins: [
postcssPlugin({
postcss: {
plugins: [tailwindcss, autoprefixer],
},
}),
],
}
if (isDev) {
buildConfig = { ...buildConfig, ...{ minify: false, drop: [] } }
}
async function deleteOldDir() {
await fs.remove(outdir)
}
async function runEsbuild() {
await esbuild.build(buildConfig)
}
async function zipFolder(dir) {
const output = fs.createWriteStream(`${dir}.zip`)
const archive = archiver('zip', {
zlib: { level: 9 },
})
archive.pipe(output)
archive.directory(dir, false)
await archive.finalize()
}
async function copyFiles(entryPoints, targetDir) {
await fs.ensureDir(targetDir)
await Promise.all(
entryPoints.map(async (entryPoint) => {
await fs.copy(entryPoint.src, `${targetDir}/${entryPoint.dst}`)
}),
)
}
function copyDirectoryContent(source = 'public', destination = 'build') {
try {
// Get list of files and directories in source directory
const items = fs.readdirSync(source);
// Loop through each item
for (const item of items) {
// Get the full path of the item
const itemPath = path.join(source, item);
// Get the stats of the item
const stats = fs.statSync(itemPath);
// Determine if the item is a file or directory
if (stats.isFile()) {
// If it's a file, copy it to the destination directory
fs.copyFileSync(itemPath, path.join(destination, item));
} else if (stats.isDirectory()) {
// If it's a directory, create it in the destination directory
fs.ensureDirSync(path.join(destination, item));
// Recursively copy files in the subdirectory
copyDirectoryContent(itemPath, path.join(destination, item));
}
}
} catch (err) {
console.error('Error copying files:', err);
}
}
async function exportForBrowser(browser) {
const commonFiles = [
{ src: 'build/background/index.js', dst: 'background.js' },
{ src: 'build/content-script/index.js', dst: 'content-script.js' },
{ src: 'src/popup/index.html', dst: 'popup/popup.html' },
{ src: 'build/popup/index.js', dst: 'popup/popup.js' },
{ src: 'build/popup/index.css', dst: 'popup/popup.css' },
// { src: 'src/assets/16.png', dst: '16.png' },
// { src: 'src/assets/48.png', dst: '48.png' },
// { src: 'src/assets/128.png', dst: '128.png' },
// { src: 'src/assets/240.png', dst: '240.png' },
]
await copyFiles(
[...commonFiles, { src: `src/manifest-${browser}.json`, dst: 'manifest.json' }],
`./${outdir}/${browser}`,
)
copyDirectoryContent('public', path.join('build', browser, 'popup'));
await zipFolder(`./${outdir}/${browser}`)
await copyFiles(
[
{
src: `${outdir}/${browser}.zip`,
dst: `${appName}${browser}.zip`,
},
],
`./${packagesDir}`,
)
await copyFiles(
[
{
src: `${outdir}/${browser}`,
dst: `./${browser}`,
},
],
`./${packagesDir}`,
)
}
async function build() {
await deleteOldDir()
await runEsbuild()
// chromium
await exportForBrowser('chromium');
// firefox
await exportForBrowser('firefox');
console.log('Build success.')
}
build()