-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
40 lines (39 loc) · 1 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 resolve from '@rollup/plugin-node-resolve'
import external from 'rollup-plugin-peer-deps-external'
import postcss from 'rollup-plugin-postcss'
import commonjs from '@rollup/plugin-commonjs'
export default [
{
input: './src/index.js',
output: [
{
file: 'dist/index.js',
format: 'cjs', // common js
},
{
file: 'dist/index.es.js',
format: 'es', // es modules
exports: 'named',
},
],
plugins: [
// helps rollup know how to handle common js importing and exporting. e.g. the prop-types package
commonjs(),
// process our css files
postcss({
plugins: [],
minimize: true,
}),
babel({
exclude: 'node_modules/**',
presets: ['@babel/preset-react'],
}),
external(),
resolve({
// add .jsx so we don't have to include the extension when importing jsx files
extensions: ['.js', '.jsx'],
}),
],
},
]