-
Notifications
You must be signed in to change notification settings - Fork 6
/
rollup.config.js
49 lines (45 loc) · 1.09 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
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 { 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 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 [
buildCjs({ env: 'production' }),
buildCjs({ env: 'development' }),
{
input,
external,
output: [
{
file: pkg.module,
format: 'es',
sourcemap: true,
},
],
plugins: [resolve(), babel(babelOptions), sizeSnapshot(), sourceMaps()],
},
];