-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrollup.config.js
69 lines (66 loc) · 1.2 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import { terser } from "rollup-plugin-terser";
import html from 'rollup-plugin-bundle-html';
import serve from 'rollup-plugin-serve'
import livereload from 'rollup-plugin-livereload'
import image from 'rollup-plugin-img';
import { string } from "rollup-plugin-string";
import copy from 'rollup-plugin-copy';
const options = {
mangle: {
properties: false,
toplevel: true,
},
compress: {
passes: 2,
},
nameCache: {},
};
const plugins = [
terser(options),
html({
template: 'src/index.html',
dest: "dist",
inject: 'body',
}),
image({
limit: 10000
}),
serve({
open: true,
contentBase: 'dist',
}),
livereload({
watch: 'dist',
}),
string({
include: ['**/*.frag', '**/*.vert'],
}),
];
module.exports = [
{
input: 'src/index.js',
output: {
file: 'dist/game.js',
format: 'iife',
sourcemap: 'inline',
},
plugins: [
...plugins,
copy({
targets: [
{ src: 'src/favicon.ico', dest: 'dist' },
]
})
],
},
{
input: 'src/lib/assets-loader.js',
output: {
file: 'dist/assets-loader.js',
format: 'esm',
},
plugins: [
terser(options),
]
},
];