-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
85 lines (71 loc) · 2.14 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
import resolve from '@rollup/plugin-node-resolve'
import replace from '@rollup/plugin-replace'
import commonjs from '@rollup/plugin-commonjs'
import typescript from 'rollup-plugin-typescript2'
import { terser } from 'rollup-plugin-terser'
import gzip from 'rollup-plugin-gzip'
import brotli from 'rollup-plugin-brotli'
const configs = []
for (const pkg of ['root', 'hooks', 'lit', 'utils']) {
for (const format of ['esm', 'umd', 'cjs']) {
for (const productive of [false, true]) {
configs.push(createConfig(pkg, format, productive))
}
}
}
export default configs
// --- locals -------------------------------------------------------
function createConfig(pkg, moduleFormat, productive) {
const env = productive ? 'production' : 'development'
return {
input:
pkg === 'root'
? 'src/main/js-element.ts'
: `src/main/js-element-${pkg}.ts`,
output: {
file:
pkg === 'root'
? `dist/js-element.${moduleFormat}.${env}.js`
: `dist/js-element-${pkg}.${moduleFormat}.${env}.js`,
format: moduleFormat,
sourcemap: false, // productive ? false : 'inline', // TODO
name: pkg === 'root' ? 'jsElement' : 'jsElement.' + pkg,
globals: {
'js-element': 'jsElement',
'js-element/hooks': 'jsElement.hooks',
'js-element/utils': 'jsElement.utils',
'js-element/lit': 'jsElement.lit',
'lit-html': 'lit'
}
},
external: [
'js-element',
'js-element/hooks',
'js-element/utils',
'js-element/lit',
'lit-html',
'lit-html/directives/class-map',
'lit-html/directives/ref',
'lit-html/directives/repeat',
'lit-html/directives/style-map'
],
plugins: [
resolve(),
commonjs(),
replace({
exclude: 'node_modules/**',
delimiters: ['', ''],
preventAssignment: false,
values: {
'process.env.NODE_ENV': productive ? "'production'" : "'development'"
}
}),
typescript({
tsconfig: './tsconfig.dist.json'
}),
productive && terser(),
productive && gzip(),
productive && brotli()
]
}
}