-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
75 lines (68 loc) · 1.49 KB
/
rollup.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
import json from '@rollup/plugin-json';
import bundleSize from 'rollup-plugin-bundle-size';
import serve from 'rollup-plugin-serve';
import typescript from 'rollup-plugin-typescript2';
import { nodeResolve } from '@rollup/plugin-node-resolve';
import { terser } from 'rollup-plugin-terser';
import pkg from './package.json';
function onwarn(warning, defaultHandler) {
if (warning.code !== 'CIRCULAR_DEPENDENCY') {
defaultHandler(warning);
}
}
const name = 'traffic';
const external = [
...Object.keys(pkg.dependencies || {}),
...Object.keys(pkg.peerDependencies || {}),
];
let plugins = [
json(),
bundleSize(),
nodeResolve({ modulesOnly: true }),
typescript({
typescript: require('typescript'),
clean: true,
}),
];
if (process.env.SERVE) {
plugins = plugins.concat(
serve({
open: false,
host: 'localhost',
port: 4000,
contentBase: ['./dist'],
headers: { 'Access-Control-Allow-Origin': '*' },
})
);
}
const globals = {
arquero: 'aq',
d3: 'd3',
fflate: 'fflate',
'@turf/turf': 'turf',
'simplify-js': 'simplify-js',
};
export default [
{
input: 'src/index.ts',
external,
plugins,
onwarn,
output: [
{
file: pkg.main,
format: 'cjs',
name,
},
{ file: pkg.module, format: 'umd', name, globals },
{
file: pkg.unpkg,
format: 'umd',
sourcemap: true,
plugins: [terser({ ecma: 2020 })],
name,
globals,
},
],
},
];