forked from neptunian/react-photo-gallery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
46 lines (44 loc) · 1000 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
import babel from 'rollup-plugin-babel';
import resolve from 'rollup-plugin-node-resolve';
const name = 'Gallery';
const path = 'dist/react-photo-gallery';
const globals = {
'prop-types': 'PropTypes',
'react-dom': 'ReactDOM',
'react': 'React',
'resize-observer-polyfill': 'ResizeObserver'
};
const external = Object.keys(globals);
const babelOptions = () => {
let result = {
babelrc: false,
presets: [['@babel/preset-env', { modules: false }], '@babel/preset-react'],
plugins: [
'@babel/plugin-proposal-class-properties',
'@babel/plugin-proposal-object-rest-spread',
],
};
return result;
};
export default [
{
input: 'src/Gallery.js',
output: {
file: path + '.esm.js',
format: 'es',
},
external: external,
plugins: [babel(babelOptions())],
},
{
input: 'src/Gallery.js',
output: {
name: name,
file: path + '.umd.js',
format: 'umd',
globals: globals,
},
external: external,
plugins: [babel(babelOptions()), resolve()],
},
];