forked from idaho/hassio-trash-card
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.mjs
89 lines (83 loc) · 2.13 KB
/
rollup.config.mjs
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
import babel from '@rollup/plugin-babel';
import commonjs from '@rollup/plugin-commonjs';
import ignore from './rollup-plugins/rollup-ignore-plugin.js';
import json from '@rollup/plugin-json';
import nodeResolve from '@rollup/plugin-node-resolve';
import serve from 'rollup-plugin-serve';
import terser from '@rollup/plugin-terser';
import typescript from '@rollup/plugin-typescript';
const IGNORED_FILES = [
'@material/mwc-notched-outline/mwc-notched-outline.js',
'@material/mwc-ripple/mwc-ripple.js',
'@material/mwc-list/mwc-list.js',
'@material/mwc-list/mwc-list-item.js',
'@material/mwc-menu/mwc-menu.js',
'@material/mwc-menu/mwc-menu-surface.js',
'@material/mwc-icon/mwc-icon.js'
];
// eslint-disable-next-line no-process-env
const dev = process.env.ROLLUP_WATCH;
const serveOptions = {
contentBase: [ './dist' ],
host: '0.0.0.0',
port: 5_200,
allowCrossOrigin: true,
headers: {
'Access-Control-Allow-Origin': '*'
}
};
const plugins = [
ignore({
files: IGNORED_FILES.map(file => require.resolve(file))
}),
typescript({
declaration: false,
exclude: [ '**/*.test.ts' ]
}),
nodeResolve(),
json(),
commonjs(),
babel({
presets: [
[
'@babel/preset-env',
{
useBuiltIns: 'entry',
corejs: '3.22'
}
]
],
babelHelpers: 'bundled'
}),
...dev ? [ serve(serveOptions) ] : [ terser() ]
];
export default [
{
input: 'src/trashcard.ts',
output: {
dir: 'dist',
format: 'es',
inlineDynamicImports: true
},
plugins,
moduleContext (id) {
const thisAsWindowForModules = [
'node_modules/@formatjs/intl-utils/lib/src/diff.js',
'node_modules/@formatjs/intl-utils/lib/src/resolve-locale.js'
];
// eslint-disable-next-line no-underscore-dangle
if (thisAsWindowForModules.some(id_ => id.trimEnd().endsWith(id_))) {
return 'window';
}
},
onwarn(warning, warn) {
//console.debug('warning', warning);
if (warning.code === 'CIRCULAR_DEPENDENCY') {
if(warning.message.includes('/luxon/')) {
return;
}
}
warn(warning);
}
}
];