forked from open-wc/open-wc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodern-config.js
97 lines (88 loc) · 2.83 KB
/
modern-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
// @ts-nocheck
const { DEFAULT_EXTENSIONS } = require('@babel/core');
const { findSupportedBrowsers } = require('@open-wc/building-utils');
const customMinifyCss = require('@open-wc/building-utils/custom-minify-css');
const resolve = require('rollup-plugin-node-resolve');
const { terser } = require('rollup-plugin-terser');
const babel = require('rollup-plugin-babel');
const indexHTML = require('rollup-plugin-index-html');
const production = !process.env.ROLLUP_WATCH;
/**
* @typedef {ConfigOptions}
* @param {*} _options
* @param {*} legacy
*/
module.exports = function createBasicConfig(_options) {
const options = {
outputDir: 'dist',
extensions: DEFAULT_EXTENSIONS,
indexHTMLPlugin: {},
..._options,
};
return {
input: options.input,
treeshake: !!production,
output: {
dir: options.outputDir,
format: 'esm',
sourcemap: true,
dynamicImportFunction: 'importShim',
},
plugins: [
// parse input index.html as input and feed any modules found to rollup
indexHTML({
...(options.indexHTMLPlugin || {}),
polyfills: {
...((options.indexHTMLPlugin && options.indexHTMLPlugin.polyfills) || {}),
dynamicImport: true,
webcomponents: true,
},
}),
// resolve bare import specifiers
resolve({
extensions: options.extensions,
}),
// run code through babel
babel({
extensions: options.extensions,
plugins: [
'@babel/plugin-syntax-dynamic-import',
'@babel/plugin-syntax-import-meta',
// rollup rewrites import.meta.url, but makes them point to the file location after bundling
// we want the location before bundling
'bundled-import-meta',
production && [
'template-html-minifier',
{
modules: {
'lit-html': ['html'],
'lit-element': ['html', { name: 'css', encapsulation: 'style' }],
},
htmlMinifier: {
collapseWhitespace: true,
removeComments: true,
caseSensitive: true,
minifyCSS: customMinifyCss,
},
},
],
].filter(_ => !!_),
presets: [
[
'@babel/preset-env',
{
targets: findSupportedBrowsers(),
// preset-env compiles template literals for safari 12 due to a small bug which
// doesn't affect most use cases. for example lit-html handles it: (https://github.com/Polymer/lit-html/issues/575)
exclude: ['@babel/plugin-transform-template-literals'],
useBuiltIns: false,
modules: false,
},
],
],
}),
// only minify if in production
production && terser(),
],
};
};