-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrollup.config.js
59 lines (51 loc) · 1.16 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import babel from 'rollup-plugin-babel';
import commonjs from 'rollup-plugin-commonjs';
import uglify from 'rollup-plugin-uglify';
const env = process.env.NODE_ENV;
const config = {
input: 'src/index.js',
external: ['prop-types', 'react-lifecycles-compat', 'react'],
plugins: [],
};
if ('es' === env || 'cjs' === env) {
config.output = { format: env };
config.plugins.push(
babel({
include: 'src/*',
plugins: ['external-helpers'],
}),
);
}
if ('development' === env || 'production' === env) {
config.output = {
format: 'umd',
name: 'ReactInclude',
globals: {
'react': 'React',
'prop-types': 'PropTypes',
'react-lifecycles-compat': 'reactLifecyclesCompat',
}
};
config.plugins.push(
babel({
include: 'src/*',
plugins: ['external-helpers'],
}),
commonjs(),
);
}
if ('production' === env) {
config.plugins.push(
uglify({
compress: {
pure_getters: true,
unsafe: true,
unsafe_comps: true,
warnings: false,
unsafe_proto: true,
pure_funcs: ['classCallCheck', 'Object.defineProperty'],
},
}),
);
}
export default config;