-
Notifications
You must be signed in to change notification settings - Fork 3
/
rollup.config.js
58 lines (52 loc) · 961 Bytes
/
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
import babelrc from 'babelrc-rollup';
import babel from 'rollup-plugin-babel';
import uglify from 'rollup-plugin-uglify';
import json from 'rollup-plugin-json';
const pkg = require('./package.json');
const banner = `/*
* @preserve
* gfynonce v${pkg.version} (${pkg.homepage})
* ${pkg.description}
* MIT License
*
*/`;
const plugins = [
json(),
babel(babelrc()),
];
const regularConfig = {
plugins,
input: 'src/index.js',
output: [
{
file: pkg.main,
format: 'umd',
name: pkg.name,
banner,
},
{
file: pkg.module,
format: 'es',
},
],
};
const minifiedConfig = Object.assign({}, regularConfig, {
plugins: [
json(),
babel(babelrc()),
uglify({
output: {
comments: /@preserve/,
},
})
],
output: [
{
file: pkg.browser,
format: 'umd',
name: pkg.name,
banner,
},
],
});
export default [regularConfig, minifiedConfig];