This repository has been archived by the owner on Aug 12, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
94 lines (89 loc) · 2.21 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
import commonjs from 'rollup-plugin-commonjs';
import replace from 'rollup-plugin-replace';
import resolve from 'rollup-plugin-node-resolve';
import sourceMaps from 'rollup-plugin-sourcemaps';
import babel from 'rollup-plugin-babel';
import { uglify } from 'rollup-plugin-uglify';
import { sizeSnapshot } from 'rollup-plugin-size-snapshot';
import pkg from './package.json';
const input = './compiled/index.js';
const external = id => !id.startsWith('.') && !id.startsWith('/');
const babelOptions = {
exclude: /node_modules/,
plugins: ['annotate-pure-calls', 'dev-expression'],
};
const buildUmd = ({ env }) => ({
input,
external: ['react', 'react-native'],
output: {
name: 'react-stateful-form',
format: 'umd',
sourcemap: true,
file: env === 'production' ? `./dist/${pkg.name}.umd.${env}.js` : `./dist/${pkg.name}.umd.${env}.js`,
exports: 'named',
globals: {
react: 'React',
'react-native': 'ReactNative',
},
},
plugins: [
resolve(),
babel(babelOptions),
replace({
'process.env.NODE_ENV': JSON.stringify(env),
}),
commonjs({
include: /node_modules/,
namedExports: {
'node_modules/prop-types/index.js': ['object', 'oneOfType', 'string', 'node', 'func', 'bool', 'element'],
},
}),
sourceMaps(),
sizeSnapshot(),
env === 'production' &&
uglify({
output: { comments: false },
compress: {
keep_infinity: true,
pure_getters: true,
},
warnings: true,
toplevel: false,
}),
],
});
const buildCjs = ({ env }) => ({
input,
external,
output: {
file: `./dist/${pkg.name}.cjs.${env}.js`,
format: 'cjs',
sourcemap: true,
},
plugins: [
resolve(),
replace({
'process.env.NODE_ENV': JSON.stringify(env),
}),
sourceMaps(),
sizeSnapshot(),
],
});
export default [
buildUmd({ env: 'production' }),
buildUmd({ env: 'development' }),
buildCjs({ env: 'production' }),
buildCjs({ env: 'development' }),
{
input,
external,
output: [
{
file: pkg.module,
format: 'es',
sourcemap: true,
},
],
plugins: [resolve(), babel(babelOptions), sizeSnapshot(), sourceMaps()],
},
];