forked from focus-trap/focus-trap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
162 lines (148 loc) · 3.32 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
/* eslint-disable no-console */
/* eslint-env node */
import babel from '@rollup/plugin-babel';
import resolve from '@rollup/plugin-node-resolve';
import commonjs from '@rollup/plugin-commonjs';
import sourceMaps from 'rollup-plugin-sourcemaps';
import { terser } from 'rollup-plugin-terser';
const pkg = require('./package.json');
// REQUIRED: process.env.BUILD_ENV: "esm" | "cjs" | "umd"
const terserOptions = {
output: {
comments(node, comment) {
const text = comment.value;
const type = comment.type;
if (type === 'comment2') {
// multiline comment: keep if it starts with a bang or contains
// some common preservation keywords
return (
text.indexOf('!') === 0 || /@preserve|@license|@cc_on/i.test(text)
);
}
},
},
};
const commonPlugins = [
resolve(),
commonjs({
include: 'node_modules/**',
}),
babel({
exclude: 'node_modules/**',
babelHelpers: 'bundled',
}),
sourceMaps(),
];
const banner = `/*!
* ${pkg.name} ${pkg.version}
* @license ${pkg.license}, ${pkg.homepage.replace(
'#readme',
'/blob/master/LICENSE'
)}
*/`;
const commonConfig = {
input: './index.js',
};
const commonOutput = {
preserveModules: false, // NOTE: must be false to 'roll-up' all code into one file
sourcemap: true,
banner,
};
const libName = 'focus-trap';
const cjs = [
// NOTE: non-minified does NOT bundle dependencies
{
...commonConfig,
external: ['tabbable'],
output: {
file: `dist/${libName}.js`,
format: 'cjs',
...commonOutput,
},
plugins: commonPlugins,
},
{
...commonConfig,
external: ['tabbable'],
output: {
file: `dist/${libName}.min.js`,
format: 'cjs',
...commonOutput,
},
plugins: [...commonPlugins, terser(terserOptions)],
},
];
const esm = [
// NOTE: non-minified does NOT bundle dependencies
{
...commonConfig,
external: ['tabbable'],
output: {
file: `dist/${libName}.esm.js`,
format: 'esm',
...commonOutput,
},
plugins: commonPlugins,
},
{
...commonConfig,
external: ['tabbable'],
output: {
file: `dist/${libName}.esm.min.js`,
format: 'esm',
...commonOutput,
},
plugins: [...commonPlugins, terser(terserOptions)],
},
];
const umd = [
// NOTE: non-minified does NOT bundle dependencies
{
...commonConfig,
external: ['tabbable'],
output: {
file: `dist/${libName}.umd.js`,
format: 'umd',
noConflict: true,
name: 'focusTrap',
...commonOutput,
globals: {
tabbable: 'tabbable',
},
},
plugins: commonPlugins,
},
{
...commonConfig,
external: ['tabbable'],
output: {
file: `dist/${libName}.umd.min.js`,
format: 'umd',
noConflict: true,
name: 'focusTrap',
...commonOutput,
globals: {
tabbable: 'tabbable',
},
},
plugins: [...commonPlugins, terser(terserOptions)],
},
];
let config = {};
console.log(process.env.BUILD_ENV);
switch (process.env.BUILD_ENV) {
case 'cjs':
config = cjs;
break;
case 'esm':
config = esm;
break;
case 'umd':
config = umd;
break;
default:
throw Error(
'You must define process.env.BUILD_ENV before building with rollup. Check rollup.config.js for valid options.'
);
}
export default config;