-
Notifications
You must be signed in to change notification settings - Fork 1
/
rollup.config.js
93 lines (83 loc) · 2.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
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
import fs from 'fs';
import nodeResolve from 'rollup-plugin-node-resolve';
import nodeGlobals from 'rollup-plugin-node-globals';
import commonjs from 'rollup-plugin-commonjs';
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 matchSnapshot = process.env.SNAPSHOT === 'match';
const input = './src/index.js';
const UMDName = 'CSSOM';
const external = id => !id.startsWith('\0') && !id.startsWith('.') && !id.startsWith('/');
const getBabelOptions = () => ({
exclude: '**/node_modules/**',
babelrc: false,
presets: [['@babel/env', { modules: false }], '@babel/flow'],
});
const commonjsOptions = {
ignoreGlobal: true,
};
const snapshotOptions = {
matchSnapshot,
snapshotPath: './.size-snapshot.json',
};
const createFlowBundlePlugin = {
transformBundle(code, outputOptions) {
const file = `${outputOptions.file}.flow`;
const content = "// @flow\n\nexport * from '../src';";
fs.writeFileSync(file, content);
},
};
export default [
{
input,
output: {
file: `dist/${pkg.name}.js`,
format: 'umd',
sourcemap: true,
exports: 'named',
name: UMDName,
},
plugins: [
nodeResolve(),
babel(getBabelOptions()),
commonjs(commonjsOptions),
nodeGlobals(),
sizeSnapshot(snapshotOptions),
],
},
{
input,
output: {
file: `dist/${pkg.name}.min.js`,
format: 'umd',
exports: 'named',
name: UMDName,
},
plugins: [
nodeResolve(),
babel(getBabelOptions()),
commonjs(commonjsOptions),
nodeGlobals(),
sizeSnapshot(snapshotOptions),
uglify(),
],
},
{
input,
output: { file: pkg.main, format: 'cjs', exports: 'named' },
external,
plugins: [
createFlowBundlePlugin,
babel(getBabelOptions()),
sizeSnapshot(snapshotOptions),
],
},
{
input,
output: { file: pkg.module, format: 'esm' },
external,
plugins: [babel(getBabelOptions()), sizeSnapshot(snapshotOptions)],
},
];