-
Notifications
You must be signed in to change notification settings - Fork 17
/
esbuild.config.js
155 lines (149 loc) · 3.42 KB
/
esbuild.config.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
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
import esbuild from "esbuild";
import { nodeBuiltIns } from "esbuild-node-builtins";
import GlobalsPlugin from "esbuild-plugin-globals";
const watch = (process.argv.includes('-w') || process.argv.includes('-watch'))
? {
onRebuild(error,result){
console.log('rebuilt',{error,result});
}
}
: false;
const globalName = 'jsonx';
const entryPoints = ['src/index.ts'];
const webPlugins = [nodeBuiltIns()];
const webCorePlugins = webPlugins.concat([
GlobalsPlugin({
react: "React",
'react-dom': "ReactDOM"
})],
);
const serverPlugins = [];
const serverExternals = [
'path',
'@hookform/error-message',
'react',
'react-dom',
'react-dom/server',
'react-dom/client',
'react-dom-factories',
'create-react-class',
'react-hook-form',
'memory-cache',
'luxon',
'numeral',
'ua-parser-js',
];
void async function main(){
try {
const browserMinifiedBuild = await esbuild.build({
watch,
format:'iife',
globalName,
entryPoints,
bundle:true,
minify:true,
sourcemap:true,
target:['es2019'],
plugins: webPlugins,
outfile:'dist/index.web.min.js'
});
const browserBuild = await esbuild.build({
watch,
format:'iife',
globalName,
entryPoints,
bundle:true,
minify:false,
sourcemap:true,
target:['es2019'],
plugins: webPlugins,
outfile:'dist/index.web.js'
});
const browserCoreBuild = await esbuild.build({
watch,
format:'iife',
globalName,
entryPoints,
bundle:true,
minify:false,
sourcemap:true,
target:['es2019'],
plugins: webCorePlugins,
outfile:'dist/index.web.core.js'
});
const browserCoreMinifiedBuild = await esbuild.build({
watch,
format:'iife',
globalName,
entryPoints,
bundle:true,
minify:true,
sourcemap:true,
target:['es2019'],
plugins: webCorePlugins,
outfile:'dist/index.web.core-min.js'
});
const browserCoreLegacyBuild = await esbuild.build({
watch,
format:'iife',
globalName,
entryPoints,
bundle:true,
minify:false,
sourcemap:true,
target:['es6'],
plugins: webCorePlugins,
outfile:'dist/index.web.core-legacy-min.js'
});
const browserCoreLegacyMinifiedBuild = await esbuild.build({
watch,
format:'iife',
globalName,
entryPoints,
bundle:true,
minify:true,
sourcemap:true,
target:['es6'],
plugins: webCorePlugins,
outfile:'dist/index.web.core-legacy-min.js'
});
const cjsBuild = await esbuild.build({
watch,
format:'cjs',
globalName,
entryPoints,
bundle:true,
minify:false,
external: serverExternals,
sourcemap:false,
platform:'node',
plugins: serverPlugins,
outfile:'dist/index.cjs'
});
const esmBuild = await esbuild.build({
watch,
format:'esm',
globalName,
entryPoints,
bundle:true,
minify:false,
external: serverExternals,
sourcemap:false,
platform:'node',
plugins: serverPlugins,
outfile:'dist/index.esm.js'
});
console.log({
browserBuild,
browserMinifiedBuild,
browserCoreBuild,
browserCoreMinifiedBuild,
browserCoreLegacyMinifiedBuild,
browserCoreLegacyBuild,
cjsBuild,
esmBuild
});
} catch(e){
console.error(e);
}
}();