-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrollup.config.js
47 lines (46 loc) · 1.06 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
import resolve from 'rollup-plugin-node-resolve'
import { terser } from 'rollup-plugin-terser'
import filesize from 'rollup-plugin-filesize'
import commonjs from '@rollup/plugin-commonjs'
import minifyHTML from 'rollup-plugin-minify-html-literals'
import json from 'rollup-plugin-json'
import postCSS from 'rollup-plugin-postcss'
import postCSSLit from 'rollup-plugin-postcss-lit'
import postCSSPresetEnv from 'postcss-preset-env'
export default {
input: 'src/index.js',
output: {
file: 'water-heater-card.js',
format: 'umd',
name: 'WaterHeaterCard',
},
plugins: [
resolve(),
commonjs(),
postCSS({
plugins: [
postCSSPresetEnv({
stage: 1,
features: {
'nesting-rules': true,
'custom-media-query': true,
},
}),
],
}),
postCSSLit(),
json({ compact: true }),
minifyHTML({
options: {
shouldMinifyCSS: () => false,
minifyCSS: false,
},
}),
terser({
output: {
comments: false,
},
}),
filesize(),
],
}