forked from EINDEX/logseq-copilot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.mjs
120 lines (106 loc) · 3.25 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 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 getManifest from './src/manifest.json.cjs';
import remToPx from 'postcss-rem-to-pixel';
dotenv.config();
const outdir = 'build';
const nodeEnv = JSON.stringify(process.env.NODE_ENV || 'production');
const VERSION = `${process.env.VERSION}` || '0.0.0';
async function deleteOldDir() {
await fs.remove(outdir);
}
async function runEsbuild() {
await esbuild.build({
entryPoints: [
'src/pages/content/index.tsx',
'src/pages/background/index.ts',
'src/pages/options/index.tsx',
'src/pages/popup/index.tsx',
],
bundle: true,
outdir: outdir,
treeShaking: true,
minify: nodeEnv === 'production' ? true : false,
legalComments: 'none',
define: {
'process.env.NODE_ENV': nodeEnv,
'process.env.VERSION': JSON.stringify(VERSION),
},
jsxFragment: 'Fragment',
jsx: 'automatic',
loader: {
'.png': 'dataurl',
'.woff2': 'dataurl',
},
plugins: [
postcssPlugin({
postcss: {
plugins: [tailwindcss, autoprefixer, remToPx],
},
}),
],
globalName: 'browser',
});
}
async function zipFolder(dir, version) {
const output = fs.createWriteStream(`${dir}-${version}.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}`);
}),
);
}
async function build() {
await deleteOldDir();
await runEsbuild();
const commonFiles = [
{ src: 'build/content/index.js', dst: 'content-script.js' },
{ src: 'build/content/index.css', dst: 'content-script.css' },
{ src: 'build/background/index.js', dst: 'background.js' },
{ src: 'build/options/index.js', dst: 'options.js' },
{ src: 'build/options/index.css', dst: 'options.css' },
{ src: 'build/popup/index.js', dst: 'popup.js' },
{ src: 'build/popup/index.css', dst: 'popup.css' },
{ src: 'src/pages/options/index.html', dst: 'options.html' },
{ src: 'src/pages/popup/index.html', dst: 'popup.html' },
{ src: 'src/assets', dst: 'assets' },
];
// chromium
await copyFiles([...commonFiles], `./${outdir}/chrome`);
await fs.writeFile(
`./${outdir}/chrome/manifest.json`,
JSON.stringify(getManifest('chrome')),
);
await zipFolder(`./${outdir}/chrome`, VERSION);
// edge
await copyFiles([...commonFiles], `./${outdir}/edge`);
await fs.writeFile(
`./${outdir}/edge/manifest.json`,
JSON.stringify(getManifest('edge')),
);
await zipFolder(`./${outdir}/edge`, VERSION);
// firefox
await copyFiles([...commonFiles], `./${outdir}/firefox`);
await fs.writeFile(
`./${outdir}/firefox/manifest.json`,
JSON.stringify(getManifest('firefox')),
);
await zipFolder(`./${outdir}/firefox`, VERSION);
console.log('Build success.');
}
build();