forked from repetere/jsonm-data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
esbuild.config.js
136 lines (130 loc) · 2.92 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
import esbuild from "esbuild";
import { nodeBuiltIns } from "esbuild-node-builtins";
// import GlobalsPlugin from "esbuild-plugin-globals";
import brode from '@geut/esbuild-plugin-brode'
const watch = (process.argv.includes('-w') || process.argv.includes('-watch'))
? {
onRebuild(error,result){
console.log('rebuilt',{error,result});
}
}
: false;
const globalName = 'JSONStackData';
const entryPoints = ['src/index.ts'];
const webPlugins = [nodeBuiltIns(),brode()];
const webCorePlugins = webPlugins.concat([
// GlobalsPlugin({
// react: "React",
// 'react-dom': "ReactDOM"
// })
],
);
const serverPlugins = [];
const serverExternals = [
'valid-url',
'http',
'https',
"csvtojson",
"js-grid-search-lite",
"lodash.range",
"lodash.rangeright",
"ml-confusion-matrix",
"ml-matrix",
"ml-stat",
"natural",
"node-fpgrowth",
"probability-distributions",
"random-js",
"valid-url",
'wordnet-db',
'webworker-threads',
'lapack'
];
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/web/index.min.js'
});
const browserBuild = await esbuild.build({
watch,
format:'iife',
globalName,
entryPoints,
bundle:true,
minify:false,
sourcemap:true,
target:['es2019'],
plugins: webPlugins,
outfile:'dist/web/index.js'
});
const browserLegacyBuild = await esbuild.build({
watch,
format:'iife',
globalName,
entryPoints,
bundle:true,
minify:false,
sourcemap:true,
target:['es6'],
plugins: webCorePlugins,
outfile:'dist/web/index.legacy.js'
});
const browserLegacyMinifiedBuild = await esbuild.build({
watch,
format:'iife',
globalName,
entryPoints,
bundle:true,
minify:true,
sourcemap:true,
target:['es6'],
plugins: webCorePlugins,
outfile:'dist/web/index.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/cjs/index.js'
});
const esmBuild = await esbuild.build({
watch,
format:'esm',
globalName,
entryPoints,
bundle:true,
minify:false,
external: serverExternals,
sourcemap:false,
platform:'node',
plugins: serverPlugins,
outfile:'dist/esm/index.js'
});
console.log({
browserBuild,
browserMinifiedBuild,
browserLegacyBuild,
browserLegacyMinifiedBuild,
cjsBuild,
esmBuild
});
} catch(e){
console.error(e);
}
}();