forked from ericgio/react-bootstrap-typeahead
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
45 lines (40 loc) · 1.09 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
/* eslint-disable sort-keys */
const babel = require('@rollup/plugin-babel').default;
const commonjs = require('@rollup/plugin-commonjs');
const { nodeResolve } = require('@rollup/plugin-node-resolve');
const replace = require('@rollup/plugin-replace');
const { sizeSnapshot } = require('rollup-plugin-size-snapshot');
const { terser } = require('rollup-plugin-terser');
const { name } = require('./package.json');
const globals = {
react: 'React',
'react-dom': 'ReactDOM',
};
const getUmdConfig = (isProd) => ({
input: './src/index.js',
output: {
file: `dist/${name}${isProd ? '.min' : ''}.js`,
format: 'umd',
globals,
name: 'ReactBootstrapTypeahead',
},
external: Object.keys(globals),
plugins: [
nodeResolve(),
commonjs({
include: /node_modules/,
}),
babel({
babelHelpers: 'bundled',
exclude: /node_modules/,
}),
replace({
'process.env.NODE_ENV': JSON.stringify(
isProd ? 'production' : 'development'
),
}),
sizeSnapshot(),
isProd ? terser() : null,
],
});
module.exports = [false, true].map(getUmdConfig);