-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathrollup.config.js
More file actions
38 lines (37 loc) · 838 Bytes
/
Copy pathrollup.config.js
File metadata and controls
38 lines (37 loc) · 838 Bytes
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
import babel from 'rollup-plugin-babel'
import resolve from 'rollup-plugin-node-resolve'
import commonjs from 'rollup-plugin-commonjs'
import { sizeSnapshot } from 'rollup-plugin-size-snapshot'
import { terser } from 'rollup-plugin-terser'
// rollup.config.js
const config = {
input: 'src/components/colourWheel/ColourWheel.js',
external: ['react'],
output: {
file: 'build/ColourWheel.js',
format: 'umd',
name: 'countdown',
globals: {
react: 'React'
}
},
plugins: [
babel({
exclude: 'node_modules/**'
}),
resolve({
jsnext: true,
main: true,
browser: true
}),
commonjs({
include: 'node_modules/**',
namedExports: {
'node_modules/react-dom/index.js': ['render']
}
}),
sizeSnapshot(),
terser()
]
}
export default config