forked from primer/react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
40 lines (37 loc) · 1.07 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
import babel from 'rollup-plugin-babel'
import commonjs from 'rollup-plugin-commonjs'
import resolve from '@rollup/plugin-node-resolve'
import {terser} from 'rollup-plugin-terser'
import visualizer from 'rollup-plugin-visualizer'
// NOTE: this can be removed once the next version of rollup-plugin-commonjs is released
const namedExports = {
'prop-types': ['object', 'func', 'oneOfType', 'node', 'bool', 'string', 'any', 'arrayOf'],
'react-dom': ['createPortal'],
'react-is': ['isValidElementType']
}
const formats = ['esm', 'umd']
const plugins = [
babel({exclude: 'node_modules/**', runtimeHelpers: true}),
resolve(),
commonjs({namedExports}),
terser(),
visualizer({sourcemap: true})
]
export default [
{
input: 'src/index.js',
external: ['styled-components', 'react', 'react-dom'],
plugins,
output: formats.map(format => ({
file: `dist/browser.${format}.js`,
format,
sourcemap: true,
name: 'primer',
globals: {
react: 'React',
'react-dom': 'ReactDOM',
'styled-components': 'styled'
}
}))
}
]