-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
43 lines (42 loc) · 1.02 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
import jsx from 'rollup-plugin-jsx'
import progress from 'rollup-plugin-progress'
import commonjs from 'rollup-plugin-commonjs'
import resolve from 'rollup-plugin-node-resolve'
import json from 'rollup-plugin-json'
import replace from 'rollup-plugin-replace'
import { terser } from "rollup-plugin-terser";
module.exports = {
input: 'src/main.js',
output: {
name: 'wkk',
exports: 'named',
file: './build/bundle.js',
format: 'umd',
sourcemap: 'inline'
},
plugins: [
progress(),
resolve({
browser: true
}),
json(),
jsx({ factory: 'React.createElement' }),
commonjs({
include: ['node_modules/**'],
exclude: ['node_modules/process-es6/**'],
namedExports: {
'node_modules/react/index.js': [
'Children',
'Component',
'PropTypes',
'createElement'
],
'node_modules/react-dom/index.js': ['render']
}
}),
replace({
'process.env.NODE_ENV': JSON.stringify('production')
}),
terser()
]
}