generated from custom-cards/boilerplate-card
-
Notifications
You must be signed in to change notification settings - Fork 78
/
rollup.config.dev.js
44 lines (43 loc) · 1.13 KB
/
rollup.config.dev.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
import { nodeResolve } from '@rollup/plugin-node-resolve'
import typescript from 'rollup-plugin-typescript2'
import { babel } from '@rollup/plugin-babel'
import serve from 'rollup-plugin-serve'
import terser from '@rollup/plugin-terser'
import json from '@rollup/plugin-json'
import image from '@rollup/plugin-image'
export default {
input: ['src/clock-weather-card.ts'],
output: {
dir: './dist',
format: 'es',
},
plugins: [
image(),
nodeResolve(),
typescript(),
json(),
babel({
exclude: 'node_modules/**',
babelHelpers: 'bundled'
}),
terser(),
serve({
contentBase: './dist',
host: '0.0.0.0',
port: 5001,
headers: {
'Access-Control-Allow-Origin': '*',
},
}),
],
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);
},
};