-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.mjs
252 lines (228 loc) · 5.92 KB
/
rollup.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
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
/* eslint-disable no-console */
import { readFile } from 'fs/promises';
import babel from '@rollup/plugin-babel';
import json from '@rollup/plugin-json';
import nodeResolve from '@rollup/plugin-node-resolve';
import terser from '@rollup/plugin-terser';
import bundleSize from 'rollup-plugin-bundle-size';
const pkg = JSON.parse(await readFile('./package.json'));
const d3Deps = [
'd3-array',
'd3-color',
'd3-dispatch',
'd3-dsv',
'd3-force',
'd3-format',
'd3-geo',
'd3-hierarchy',
'd3-interpolate',
'd3-path',
'd3-scale',
'd3-shape',
'd3-time',
'd3-time-format',
'd3-timer',
'd3-delaunay'
];
const esmDeps = [
...d3Deps,
'd3-geo-projection',
'd3-scale-chromatic'
];
const d3CoreDeps = [
...d3Deps,
'topojson-client'
];
function onwarn(warning, defaultHandler) {
if (warning.code !== 'CIRCULAR_DEPENDENCY') {
defaultHandler(warning);
}
}
/**
* Command line arguments:
* `config-debug`: print debug information about the build
* `config-browser`: the module has different inputs for browser and node
* `config-bundle`: bundle dependencies in browser output
* `config-transform`: the module is a Vega transform
* `config-core`: create a bundle without d3
* `config-node`: the module is only intended for node
* `config-ie`: generate ie 11 compatible bundles in `build-es5`
* `config-test`: skip bundles not required for tests
*/
export default function(commandLineArgs) {
const debug = !!commandLineArgs['config-debug'];
if (debug) {
console.info(pkg);
console.info(commandLineArgs);
}
const browser = !!pkg.browser;
const bundle = !!commandLineArgs['config-bundle'];
const ie = !!commandLineArgs['config-ie'];
const test = !!commandLineArgs['config-test'];
const dependencies = Object.keys(pkg.dependencies || {});
const coreExternal = d3CoreDeps;
const vgDependencies = bundle ? [] : dependencies.filter(dep => dep.startsWith('vega-'));
const name = commandLineArgs['config-transform'] ? 'vega.transforms' : 'vega';
const globals = {};
for (const dep of [...dependencies, ...d3CoreDeps]) {
if (dep.startsWith('d3')) {
globals[dep] = 'd3';
} else if (dep.startsWith('vega-')) {
globals[dep] = 'vega';
} else if (dep.startsWith('topojson-')) {
globals[dep] = 'topojson';
}
}
function commonPlugins(targets) {
if (debug) {
console.log(targets);
}
return [
json(),
babel({
presets: [[
'@babel/preset-env',
{
targets,
debug
}
]],
babelHelpers: 'bundled',
extensions: ['.js', '.ts']
}),
bundleSize()
];
}
function nodePlugin(browser) {
return nodeResolve({
browser,
modulesOnly: true,
customResolveOptions: { preserveSymlinks: false }
});
}
const outputs = [{
input: './index.js',
external: dependencies.filter(dep => !esmDeps.includes(dep)),
onwarn,
output: {
file: pkg.main,
format: pkg.main.includes('-node') ? 'cjs' : 'umd',
globals,
sourcemap: false,
name
},
plugins: [nodePlugin(false), ...commonPlugins({node: true})]
}, {
input: './index.js',
external: dependencies,
onwarn,
output: {
file: pkg.module,
format: 'esm',
sourcemap: false
},
plugins: [nodePlugin(true), ...commonPlugins('defaults, last 1 node versions')]
}];
if (browser) {
outputs.push(
...outputs.map(out => ({
...out,
input: './index.browser.js',
output: {
...out.output,
file: out.output.file.replace('node', 'browser')
}
}))
);
}
if (test) {
return outputs;
}
/**
* If `config-bundle` is true, create minified and long outputs.
*/
function bundleOutputs(output) {
if (bundle) {
return [{
...output,
plugins: [terser()]
}, {
...output,
sourcemap: false,
file: output.file.replace('.min', '')
}];
} else {
return {
...output,
plugins: [terser()]
};
}
}
if (!commandLineArgs['config-node']) {
outputs.push({
input: browser ? './index.browser.js' : './index.js',
external: vgDependencies,
onwarn,
output: bundleOutputs({
file: pkg.unpkg,
format: 'umd',
sourcemap: true,
globals,
name
}),
plugins: [nodePlugin(true), ...commonPlugins('defaults, last 1 node versions')]
});
if (ie) {
outputs.push({
input: browser ? './index.browser.js' : './index.js',
external: vgDependencies,
onwarn,
output: bundleOutputs({
file: pkg.unpkg.replace('build/', 'build-es5/'),
format: 'umd',
sourcemap: true,
globals,
name
}),
plugins: [nodePlugin(true), ...commonPlugins('defaults, IE 11')]
});
}
}
if (commandLineArgs['config-core']) {
// Create bundle without d3 (core bundle)
outputs.push({
input: browser ? './index.browser.js' : './index.js',
external: [...vgDependencies, ...coreExternal],
onwarn,
output: bundleOutputs({
file: pkg.unpkg.replace('.min.js', '-core.min.js'),
format: 'umd',
sourcemap: true,
globals,
name
}),
plugins: [nodePlugin(true), ...commonPlugins('defaults, last 1 node versions')]
});
if (ie) {
outputs.push({
input: browser ? './index.browser.js' : './index.js',
external: [...vgDependencies, ...coreExternal],
onwarn,
output: bundleOutputs({
file: pkg.unpkg
.replace('.min.js', '-core.min.js')
.replace('build/', 'build-es5/'),
format: 'umd',
sourcemap: true,
globals,
name
}),
plugins: [nodePlugin(true), ...commonPlugins('defaults, IE 11')]
});
}
}
if (debug) {
console.info(outputs);
}
return outputs;
}