-
Notifications
You must be signed in to change notification settings - Fork 44
/
rollup.config.js
68 lines (63 loc) · 1.79 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
import fs from 'fs';
import path from 'path';
import replace from '@rollup/plugin-replace';
import { babel } from '@rollup/plugin-babel';
import { terser } from 'rollup-plugin-terser';
import gzipSize from 'gzip-size';
import * as brotliSize from 'brotli-size';
import pkg from './package.json';
const input = './src/index.js';
const external = id =>
id.startsWith('.') === false && path.isAbsolute(id) === false;
const babelOptions = {
babelrc: false,
configFile: false,
babelHelpers: 'bundled',
presets: [
['@babel/preset-env', { bugfixes: true, loose: true }],
'@babel/flow',
'@babel/react',
],
};
export default [
{
input,
output: { file: pkg.main, format: 'cjs' },
external,
plugins: [babel(babelOptions)],
},
{
input,
output: { file: pkg.module, format: 'esm' },
external,
plugins: [babel(babelOptions)],
},
// to check esm production size
{
input,
output: { file: 'dist/rifm.esm.production.js', format: 'esm' },
external,
plugins: [
babel(babelOptions),
replace({ 'process.env.NODE_ENV': JSON.stringify('production') }),
terser(),
{
generateBundle(outputOptions, bundle) {
let sizeInfo = '';
for (const [name, chunk] of Object.entries(bundle)) {
const parsedSize = chunk.code.length;
const gzippedSize = gzipSize.sync(chunk.code);
const brotliedSize = brotliSize.sync(chunk.code);
sizeInfo += `Size of ${name}
=============================
min: ${parsedSize} b
gzip: ${gzippedSize} b
brotli: ${brotliedSize} b\n`.replace(/^\s+/gm, '');
}
console.info(sizeInfo);
fs.writeFileSync('size-snapshot.txt', sizeInfo, 'utf-8');
},
},
],
},
];