-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrollup.config.js
More file actions
48 lines (46 loc) · 1.45 KB
/
Copy pathrollup.config.js
File metadata and controls
48 lines (46 loc) · 1.45 KB
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
import resolve from '@rollup/plugin-node-resolve';
import commonjs from '@rollup/plugin-commonjs';
import { terser } from 'rollup-plugin-terser';
import replace from '@rollup/plugin-replace';
import url from '@rollup/plugin-url';
import alias from '@rollup/plugin-alias';
import strip from '@rollup/plugin-strip';
// `npm run build` -> `production` is true
// `npm run dev` -> `production` is false
const production = !process.env.ROLLUP_WATCH;
const on = JSON.stringify(true);
const off = JSON.stringify(false);
export default {
input: 'src/main.js',
output: {
file: 'public/bundle.js',
format: 'iife', // suitable for <script> tags
sourcemap: false
},
plugins: [
alias({
entries: {
phaser: './node_modules/phaser/src/phaser.js'
// phaser: './node_modules/phaser/src/phaser-arcade-physics.js'
// phaser: './node_modules/phaser/src/phaser-core.js'
}
}),
replace({
'typeof CANVAS_RENDERER': on,
'typeof EXPERIMENTAL': off,
'typeof FEATURE_SOUND': off,
'typeof PLUGIN_CAMERA3D': off,
'typeof PLUGIN_FBINSTANT': off,
'typeof WEBGL_RENDERER': on
}),
resolve(), // find packages in node_modules
commonjs(), // convert 'phaser' to ES modules
url({
include: '**/assets/**/*',
fileName: '[name].[hash][extname]',
limit: 0
}),
production && strip(),
production && terser({ output: { comments: false } }) // minify, but only in production
]
};