-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrollup.config.js
119 lines (108 loc) · 3.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
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 {rollupPluginHTML} from '@web/rollup-plugin-html';
import {polyfillsLoader} from '@web/rollup-plugin-polyfills-loader';
import resolve from '@rollup/plugin-node-resolve';
import minifyHTML from 'rollup-plugin-minify-html-literals';
import summary from 'rollup-plugin-summary';
import { getBabelOutputPlugin } from '@rollup/plugin-babel';
import { terser } from 'rollup-plugin-terser';
import { copy } from '@web/rollup-plugin-copy';
function onwarn(warning) {
if (warning.code !== 'THIS_IS_UNDEFINED') {
console.error(`(!) ${warning.message}`);
}
}
// Configure an instance of @web/rollup-plugin-html
const htmlPlugin = rollupPluginHTML({
rootDir: './',
extractAssets: true,
});
export default {
input: 'index.html',
onwarn,
treeshake: true,
plugins: [
htmlPlugin,
resolve(), // Resolve bare module specifiers to relative paths
minifyHTML(), // Minify HTML template literals
terser({ // Minify JS
ecma: 2020,
module: true,
warnings: true,
mangle: {
properties: {
regex: /^__/,
},
},
}),
polyfillsLoader({
modernOutput: {
name: 'modern',
type: 'module',
},
// Feature detection for loading legacy bundles
legacyOutput: {
name: 'legacy',
test: '!Array.prototype.flat',
type: 'systemjs',
},
// List of polyfills to inject (each has individual feature detection)
polyfills: {
hash: true,
coreJs: true,
regeneratorRuntime: true,
// fetch: true,
webcomponents: true,
// Custom configuration for loading Lit's polyfill-support module,
// required for interfacing with the webcomponents polyfills
custom: [
{
name: 'lit-polyfill-support',
path: 'node_modules/lit/polyfill-support.js',
test: "!('attachShadow' in Element.prototype)",
module: false,
},
],
},
}),
summary({ showMinifiedSize: false }), // Print bundle summary
copy({
patterns: ['localization/**/*'],
}),
],
output: [
{
// Modern JS bundles (no JS compilation, ES module output)
format: 'esm',
chunkFileNames: '[name]-[hash].js',
entryFileNames: '[name]-[hash].js',
dir: 'dist',
plugins: [htmlPlugin.api.addOutput('modern')],
},
{
// Legacy JS bundles (ES5 compilation and SystemJS module output)
format: 'esm',
chunkFileNames: 'legacy-[name]-[hash].js',
entryFileNames: 'legacy-[name]-[hash].js',
dir: 'dist',
plugins: [
htmlPlugin.api.addOutput('legacy'),
// Uses babel to compile JS to ES5 and modules to SystemJS
getBabelOutputPlugin({
compact: true,
presets: [
[
'@babel/preset-env',
{
targets: {
ie: '11',
},
modules: 'systemjs',
},
],
],
}),
],
},
],
preserveEntrySignatures: false, // https://rollupjs.org/guide/en/#preserveentrysignatures
};