-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
121 lines (120 loc) · 2.97 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
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
// Based on example: https://github.com/rollup/rollup-starter-lib
//import { eslint } from "rollup-plugin-eslint";
import resolve from '@rollup/plugin-node-resolve'
import commonjs from '@rollup/plugin-commonjs'
import babel from '@rollup/plugin-babel'
import json from '@rollup/plugin-json'
import pkg from './package.json'
import css from 'rollup-plugin-css-only'
import { terser } from 'rollup-plugin-terser'
export default [
// This is a bit of a hack to get rollup to make a single
// CSS file. This needs to come before the JS build.
{
input: './src/css.js',
output: {
name: 'brcatlas',
file: pkg.browser,
format: 'umd'
},
plugins: [
css({ output: null })
]
},
{
input: './src_e/eCss.js',
output: {
name: 'brcatlas_e',
file: pkg.browser_e,
format: 'umd'
},
plugins: [
css({ output: null })
]
},
// Browser-friendly UMD builds
// No need to create a minified version as jsdelivr CDN can do that for us
// Avoid bundling d3 or leaflet
{
external: ['d3', 'leaflet'],
input: 'index.js',
output: {
name: 'brcatlas',
file: pkg.browser,
format: 'umd',
globals: {
'd3': 'd3',
'leaflet': 'L'
},
},
plugins: [
//eslint(),
resolve(), // so Rollup can find node libs
commonjs(), // so Rollup can convert CommonJS modules to an ES modules
json(), // required to import package into index.js
babel({ babelHelpers: 'bundled', presets: ['@babel/preset-env'] }),
]
},
{
external: ['d3', 'leaflet'],
input: 'index.js',
output: {
name: 'brcatlas',
file: pkg.browsermin,
format: 'umd',
sourcemap: true,
globals: {
'd3': 'd3',
'leaflet': 'L'
},
},
plugins: [
//eslint(),
resolve(), // so Rollup can find node libs
commonjs(), // so Rollup can convert CommonJS modules to an ES modules
json(), // required to import package into index.js
babel({ babelHelpers: 'bundled', presets: ['@babel/preset-env'] }),
terser()
]
},
{
external: ['d3'],
input: 'index_e.js',
output: {
name: 'brcatlas_e',
file: pkg.browser_e,
format: 'umd',
globals: {
'd3': 'd3'
},
},
plugins: [
//eslint(),
resolve(), // so Rollup can find node libs
commonjs(), // so Rollup can convert CommonJS modules to an ES modules
json(), // required to import package into index.js
babel({ babelHelpers: 'bundled', presets: ['@babel/preset-env'] }),
]
},
{
external: ['d3'],
input: 'index_e.js',
output: {
name: 'brcatlas_e',
file: pkg.browsermin_e,
format: 'umd',
sourcemap: true,
globals: {
'd3': 'd3'
},
},
plugins: [
//eslint(),
resolve(), // so Rollup can find node libs
commonjs(), // so Rollup can convert CommonJS modules to an ES modules
json(), // required to import package into index.js
babel({ babelHelpers: 'bundled', presets: ['@babel/preset-env'] }),
terser()
]
},
]