generated from custom-cards/boilerplate-card
-
Notifications
You must be signed in to change notification settings - Fork 79
/
rollup.config.js
41 lines (40 loc) · 1.11 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
import typescript from 'rollup-plugin-typescript2'
import commonjs from 'rollup-plugin-commonjs'
import nodeResolve from '@rollup/plugin-node-resolve'
import { babel } from '@rollup/plugin-babel'
import terser from '@rollup/plugin-terser'
import json from '@rollup/plugin-json'
import image from '@rollup/plugin-image'
import gzipPlugin from 'rollup-plugin-gzip'
export default [
{
input: 'src/clock-weather-card.ts',
output: {
dir: 'dist',
format: 'es',
},
plugins: [
image(),
nodeResolve(),
commonjs(),
typescript(),
json(),
babel({
exclude: 'node_modules/**',
babelHelpers: 'bundled'
}),
terser(),
gzipPlugin()
],
onwarn(warning, warn) {
if (warning.code === 'CIRCULAR_DEPENDENCY' && warning.message.includes('/luxon/')) {
// https://github.com/moment/luxon/issues/193
return;
} else if (warning.code === 'THIS_IS_UNDEFINED' && warning.id.includes('@formatjs')) {
// https://github.com/custom-cards/custom-card-helpers/issues/64
return
}
warn(warning);
},
},
];