forked from filedescriptor/untrusted-types
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
47 lines (43 loc) · 1.24 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 commonjs from '@rollup/plugin-commonjs';
import resolve from '@rollup/plugin-node-resolve';
import typescript from '@rollup/plugin-typescript';
import svelte from 'rollup-plugin-svelte';
import { terser } from 'rollup-plugin-terser';
import sveltePreprocess from 'svelte-preprocess';
const production = !process.env.ROLLUP_WATCH;
function createConfig(filename, useSvelte = false) {
return {
input: `src/${filename}.ts`,
output: {
format: 'iife',
file: `public/build/${filename}.js`,
},
plugins: [
useSvelte &&
svelte({
dev: !production,
css: css => {
css.write(`${filename}.css`, false);
},
preprocess: sveltePreprocess(),
}),
resolve({
browser: true,
dedupe: ['svelte'],
}),
commonjs(),
typescript(),
production && terser(),
],
watch: {
clearScreen: false,
},
};
}
export default [
createConfig('devtools'),
createConfig('background'),
createConfig('content'),
createConfig('panel', true),
createConfig('codeView', true),
];