-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrollup.config.js
69 lines (65 loc) · 1.33 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-html2';
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';
import nodeResolve from '@rollup/plugin-node-resolve';
import kontra from 'rollup-plugin-kontra'
const options = {
mangle: {
properties: false,
toplevel: true,
},
compress: {
passes: 2,
},
nameCache: {},
};
export default [{
input: "./src/main.js",
output: {
file: 'dist/game.js',
format: 'cjs',
sourcemap: 'inline',
globals: [
'kontra',
],
},
plugins: [
html({
template: './src/index.html',
dest: "dist",
filename: 'index.html',
inject: 'body',
}),
image({
limit: 10000
}),
serve({
open: true,
contentBase: 'dist',
}),
livereload({
watch: 'dist',
}),
nodeResolve(),
terser(options),
copy({
targets: [
{ src: 'src/lib/zzfx.js', dest: 'dist' },
{ src: 'src/lib/zzfxm.min.js', dest: 'dist' },
]
}),
kontra({
debug: true,
}),
// string({
// include: ['**/*.frag', '**/*.vert'],
// }),
// sourcemaps(),
// nodeResolve(),
// terser()
],
}];