-
Notifications
You must be signed in to change notification settings - Fork 126
Expand file tree
/
Copy pathrollup.config.mjs
More file actions
119 lines (112 loc) · 2.95 KB
/
Copy pathrollup.config.mjs
File metadata and controls
119 lines (112 loc) · 2.95 KB
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
import commonjs from '@rollup/plugin-commonjs';
import resolve from '@rollup/plugin-node-resolve';
import replace from '@rollup/plugin-replace';
import terser from '@rollup/plugin-terser';
import gzipPlugin from 'rollup-plugin-gzip';
import styles from 'rollup-plugin-styler';
import { promisify } from 'util';
import { brotliCompress } from 'zlib';
// `npm run build` -> `production` is true
// `npm run dev` -> `production` is false
const production = !process.env.ROLLUP_WATCH;
const brotliPromise = promisify(brotliCompress);
const defaultPlugins = [
resolve(),
styles(),
commonjs(),
production && terser(), // minify, but only in production
production && gzipPlugin(),
production &&
gzipPlugin({
customCompression: (content) => brotliPromise(Buffer.from(content)),
fileName: '.br',
}),
replace({
values: {
'process.env.NODE_ENV': JSON.stringify('production'),
},
preventAssignment: true,
}),
];
const bundles = {
base: {
input: 'frontend/js/base.js',
output: {
file: 'frontend-dist/bundle-base.js',
format: 'iife',
sourcemap: true,
},
},
'base-with-markup': {
input: 'frontend/js/base-with-markup.js',
output: {
file: 'frontend-dist/bundle-base-with-markup.js',
format: 'iife',
sourcemap: true,
},
},
fullcalendar: {
input: 'frontend/js/fullcalendar.js',
output: {
file: 'frontend-dist/bundle-fullcalendar.js',
format: 'iife',
sourcemap: true,
name: 'rlFullCalendar',
},
},
datatables: {
input: 'frontend/js/datatables.js',
output: {
file: 'frontend-dist/bundle-datatables.js',
format: 'iife',
sourcemap: true,
name: 'rlDataTables',
// Otherwise there are complaints about datatables trying to set attributes
// on window.
strict: false,
},
},
codemirror: {
input: 'frontend/js/codemirror.js',
output: {
file: 'frontend-dist/bundle-codemirror.js',
format: 'iife',
sourcemap: true,
name: 'rlCodemirror',
},
},
prosemirror: {
input: 'frontend/js/prosemirror.js',
output: {
file: 'frontend-dist/bundle-prosemirror.js',
format: 'iife',
sourcemap: true,
name: 'rlProsemirror',
},
},
analytics: {
input: 'frontend/js/analytics.js',
output: {
// "analytics" as a file name is commonly blocked (e.g. by uBlock)
file: 'frontend-dist/bundle-analysis.js',
format: 'iife',
sourcemap: true,
},
plugins: defaultPlugins,
},
};
export default function (commandLineArgs) {
const { configBundle } = commandLineArgs;
if (configBundle) {
if (!(configBundle in bundles)) {
throw new Error(
`Unknown bundle: ${configBundle}. Available: ${Object.keys(bundles).join(', ')}`,
);
}
return [{ ...bundles[configBundle], plugins: defaultPlugins }];
}
return Object.values(bundles).map((bundle) => ({
...bundle,
plugins: defaultPlugins,
}));
}