-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathesbuild.js
54 lines (46 loc) · 1 KB
/
esbuild.js
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
const esbuild = require('esbuild');
const fs = require('fs');
const outDir = 'dist';
const baseConfig = {
entryPoints: ['src/index.ts'],
external: ['lottie-web', 'jquery', 'video.js', 'uuid'],
platform: 'node',
bundle: true,
sourcemap: true,
minify: true,
splitting: false,
target: ['esnext'],
};
const esmConfig = {
...baseConfig,
format: 'esm',
outfile: `${outDir}/index.esm.js`,
};
const cjsDevConfig = {
...baseConfig,
minify: false,
format: 'cjs',
outfile: `${outDir}/index.cjs`,
};
const cjsProdConfig = {
...baseConfig,
format: 'cjs',
outfile: `${outDir}/index.cjs.min.js`,
};
esbuild.build(esmConfig).catch((res) => {
console.log('error', res);
process.exit(1);
});
esbuild.build(cjsDevConfig).catch((res) => {
console.log('error', res);
process.exit(1);
});
esbuild
.build(cjsProdConfig)
.catch((res) => {
console.log('error', res);
process.exit(1);
})
.then(() => {
fs.copyFileSync('./build/index.template.js', `./${outDir}/index.js`);
});