-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrollup.config.js
More file actions
53 lines (51 loc) · 1.66 KB
/
rollup.config.js
File metadata and controls
53 lines (51 loc) · 1.66 KB
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
import resolve from '@rollup/plugin-node-resolve'
import babel from '@rollup/plugin-babel'
import peerDepsExternal from 'rollup-plugin-peer-deps-external'
import commonjs from '@rollup/plugin-commonjs'
import sass from 'node-sass'
import postcss from 'rollup-plugin-postcss'
import autoprefixer from 'autoprefixer'
import packageJson from './package.json'
export default {
input: 'src/index.js', // All of your library files will be named exports from here
output: [
{
// This is an easy way to keep your `main` in sync between rollup & the package
file: packageJson.main,
format: 'cjs',
sourcemap: true,
},
],
plugins: [
// This prevents needing an additional `external` prop in this config file by automaticall excluding peer dependencies
peerDepsExternal(),
// Convert CommonJS modules to ES6
commonjs({
include: 'node_modules/**',
// This was required to fix some random errors while building
namedExports: {
'react-is': ['isForwardRef', 'isValidElementType'],
},
}),
// "...locates modules using the Node resolution algorithm"
resolve(),
// Do Babel transpilation
babel({
exclude: 'node_modules/**',
babelHelpers: 'bundled',
}),
// Does a number of things; Compiles sass, run autoprefixer, creates a sourcemap, and saves a .css file
postcss({
preprocessor: (content, id) => new Promise((res) => {
const result = sass.renderSync({ file: id })
res({ code: result.css.toString() })
}),
plugins: [autoprefixer],
modules: {
scopeBehaviour: 'global',
},
sourceMap: true,
extract: true,
}),
],
}