forked from Reading-eScience-Centre/leaflet-coverage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.mjs
39 lines (36 loc) · 966 Bytes
/
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
import { defineConfig } from 'rollup';
import babel from '@rollup/plugin-babel'
import nodeResolve from '@rollup/plugin-node-resolve'
import commonjs from '@rollup/plugin-commonjs'
import { terser } from 'rollup-plugin-terser'
const outputCfgs = [
{
minify: true,
},
{
minify: false
}
]
export default defineConfig({
input: 'src/index.js',
plugins: [
nodeResolve({ browser: true }),
commonjs({ include: 'node_modules/**' }),
babel.babel({ babelHelpers: 'bundled' }),
],
external: ['leaflet', 'c3', 'covutils'],
output: outputCfgs.map(opts => ({
file: 'leaflet-coverage.' + (opts.minify ? 'min' : 'src') + '.js',
format: 'iife',
name: 'C',
sourcemap: true,
globals: id => {
switch (id) {
case 'leaflet': return 'L'
case 'covutils': return 'CovUtils'
case 'c3': return 'this.c3 || {}' // optional dependency
}
},
plugins: (opts.minify ? [terser()] : [])
}))
})