-
Notifications
You must be signed in to change notification settings - Fork 2
/
esbuild.config.mjs
56 lines (52 loc) · 1.26 KB
/
esbuild.config.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
import builtins from 'builtin-modules'
import child_process from 'child_process'
import esbuild from 'esbuild'
import fs from 'fs'
import process from 'process'
const prod = process.env.BUILD_ENV === 'production'
let runScriptPlugin = {
name: 'run-script',
setup(build) {
build.onEnd(result => {
if (result.errors.length > 0) {
return
}
const scriptName = 'sync-plugin.sh'
if (!fs.existsSync(scriptName)) {
return
}
console.log(`run ${scriptName}`)
child_process.exec(`bash ${scriptName}`, (err, stdout, stderr) => {
if (err) {
console.error(`run ${scriptName} error:`, err, stdout, stderr)
}
})
})
},
}
const result = await esbuild.build({
banner: {
js: '/* THIS IS A GENERATED/BUNDLED FILE BY ESBUILD */',
},
define: {
'process.env.BUILD_ENV': JSON.stringify(process.env.BUILD_ENV),
},
entryPoints: ['main.ts', 'styles.css'],
bundle: true,
external: [
'obsidian',
'electron',
...builtins],
format: 'cjs',
watch: !prod,
target: 'es2016',
logLevel: 'info',
sourcemap: prod ? false : 'inline',
treeShaking: true,
outdir: 'build',
plugins: [runScriptPlugin],
metafile: true,
}).catch(() => process.exit(1))
if (process.env.ESBUILD_METAFILE) {
fs.writeFileSync('build/meta.json', JSON.stringify(result.metafile))
}