-
Notifications
You must be signed in to change notification settings - Fork 2
/
rollup.config.js
100 lines (97 loc) · 2.03 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
95
96
97
98
99
100
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';
function iifeEvalOutputPlugin() {
return {
name: 'iife-eval-output-plugin',
generateBundle(options, bundle) {
for (const file of Object.values(bundle)) {
file.code = file.code.trimEnd();
if (file.code.endsWith(';')) {
file.code = file.code.slice(0, -1);
}
}
},
};
}
const basePlugins = [resolve(), commonjs()];
const evalPlugins = [
replace({
preventAssignment: true,
values: {
'process.env.NODE_ENV': JSON.stringify('production'),
},
}),
terser({
compress: {
negate_iife: false,
expression: true,
},
}),
];
export default [
// CommonJS (Node)
{
input: 'dist/index.js',
output: {
file: 'dist/index.cjs',
format: 'cjs',
},
plugins: basePlugins,
},
{
input: 'dist/playwright.js',
output: {
file: 'dist/playwright.cjs',
format: 'cjs',
},
plugins: basePlugins,
},
{
input: 'dist/puppeteer.js',
output: {
file: 'dist/puppeteer.cjs',
format: 'cjs',
},
plugins: basePlugins,
},
// UMD (Browsers)
{
input: 'dist/index.js',
output: {
file: 'dist/browser.js',
name: 'roleSelector',
format: 'umd',
globals: {
crypto: 'crypto',
},
},
plugins: basePlugins,
},
// IIFE eval (injected)
{
input: 'dist/role-selector.js',
output: {
file: 'dist/role-selector.eval.js',
format: 'iife',
globals: {
crypto: 'crypto',
},
plugins: [iifeEvalOutputPlugin()],
},
plugins: [...basePlugins, ...evalPlugins],
},
{
input: 'dist/suggest-selector.js',
output: {
file: 'dist/suggest-selector.eval.js',
format: 'iife',
globals: {
crypto: 'crypto',
},
plugins: [iifeEvalOutputPlugin()],
},
plugins: [...basePlugins, ...evalPlugins],
},
];