-
Notifications
You must be signed in to change notification settings - Fork 1
/
rollup.config.js
56 lines (50 loc) · 1.26 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
import pkg from './package.json';
import builtins from 'rollup-plugin-node-builtins';
import globals from 'rollup-plugin-node-globals';
import commonjs from 'rollup-plugin-commonjs';
import resolve from 'rollup-plugin-node-resolve';
import babel from 'rollup-plugin-babel';
export default [
// browser-friendly UMD build
{
input: pkg.entry,
output: {
file: pkg.umd,
name: pkg.name,
sourcemap: true,
format: 'umd',
},
plugins: [
resolve(),
commonjs({ include: 'node_modules/**' }), // so Rollup can convert other modules to ES module
globals(),
builtins(),
babel({
exclude: 'node_modules/**',
babelrc: false,
presets: [ 'es2015-rollup' ]
})
]
},
// CommonJS bundle has to be ES5 because it's the 'main' entry point so it has
// to be 'required' and 'imported'
{
input: pkg.entry,
output: {
file: pkg.cjs,
sourcemap: true,
format: 'cjs',
},
plugins: [
resolve(),
commonjs({ include: 'node_modules/**' }), // so Rollup can convert other modules to ES module
globals(),
builtins(),
babel({
exclude: 'node_modules/**',
babelrc: false,
presets: [ 'es2015-rollup' ]
})
]
}
];