-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
49 lines (45 loc) · 996 Bytes
/
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
48
49
import commonjs from '@rollup/plugin-commonjs';
import html from 'rollup-plugin-html2';
import livereload from 'rollup-plugin-livereload';
import resolve from '@rollup/plugin-node-resolve';
import serve from 'rollup-plugin-serve';
import svelte from 'rollup-plugin-svelte';
import {terser} from 'rollup-plugin-terser';
const isDev = process.env.NODE_ENV === 'development';
const plugins = [
svelte({
dev: isDev,
extensions: ['.svelte'],
}),
resolve({
browser: true,
dedupe: ['svelte'],
}),
commonjs(),
html({
template: 'src/index.html',
fileName: 'index.html',
}),
];
if (isDev) {
plugins.push(
serve({
contentBase: './dist',
historyApiFallback: true,
port: 3000,
}),
livereload({watch: './dist'})
);
} else {
plugins.push(terser({sourcemap: isDev}));
}
module.exports = {
input: 'src/main.js',
output: {
name: 'bundle',
file: 'dist/bundle.js',
sourcemap: isDev,
format: 'iife',
},
plugins,
};