forked from a-x-/react-easy-print
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
80 lines (72 loc) · 1.98 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
import babel from 'rollup-plugin-babel';
import resolve from 'rollup-plugin-node-resolve';
import commonjs from 'rollup-plugin-commonjs';
import replace from 'rollup-plugin-replace';
import { terser } from 'rollup-plugin-terser';
import { sizeSnapshot } from 'rollup-plugin-size-snapshot';
import postcss from 'rollup-plugin-postcss';
import cssnano from 'cssnano';
import autoprefixer from 'autoprefixer';
import postcssModules from 'postcss-modules';
const cssExportMap = {};
let postcssPlugins = [
autoprefixer(),
postcssModules({
getJSON(id, exportTokens) {
cssExportMap[id] = exportTokens;
},
// Update .babelrc too
generateScopedName: 'easy-print-[name]-[local]-[hash:base64:4]',
}),
cssnano(),
];
const input = './src/index.jsx';
const name = 'ReactEasyPrint';
const globals = {
'react': 'React',
'react-dom': 'ReactDOM',
'react-proptypes': 'PropTypes',
};
const babelOptions = {
exclude: ['node_modules/**'],
babelrc: true,
// We are using @babel/plugin-transform-runtime
runtimeHelpers: true,
};
const commonjsOptions = {
ignoreGlobal: true,
include: /node_modules/,
};
const plugins = [
postcss({
plugins: postcssPlugins,
namedExports(id) {
return cssExportMap[id];
},
extensions: ['.css'],
inject: true,
}),
resolve({
extensions: ['.js', '.jsx', '.json'], // Default: [ '.mjs', '.js', '.json', '.node' ]
}),
babel(babelOptions),
commonjs(commonjsOptions),
replace({ 'process.env.NODE_ENV': JSON.stringify('production') }),
sizeSnapshot(),
terser(),
];
export default [
// we use just babel for esm that is keep separate files, little bit faster (~1.5s) and compact (~8KiB)
// {
// input,
// output: { file: 'lib/es/index.js', format: 'es', name, globals, sourcemap: true, },
// external: Object.keys(globals),
// plugins,
// },
{
input,
output: { file: 'lib/umd/index.js', format: 'umd', name, globals, sourcemap: true, },
external: Object.keys(globals),
plugins,
}
];